Skip to content

Commit 07375e7

Browse files
committed
make ErrorResponse.Message non-nullable
1 parent 6520010 commit 07375e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/ErrorResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public ErrorResponse(Dictionary<string, object?>? responseValue)
8686
/// <summary>
8787
/// Gets or sets the message from the response
8888
/// </summary>
89-
public string? Message { get; } = string.Empty;
89+
public string Message { get; } = string.Empty;
9090

9191
/// <summary>
9292
/// Gets or sets the class name that threw the error

0 commit comments

Comments
 (0)