We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccc536d commit 0722af5Copy full SHA for 0722af5
dotnet/src/webdriver/BiDi/Modules/Script/LocalValue.cs
@@ -199,7 +199,7 @@ public static StringLocalValue String(string value)
199
{
200
if (value is null)
201
202
- throw new ArgumentNullException(nameof(value), $"string value cannot be null, use a {nameof(NullLocalValue)} value instead");
+ throw new ArgumentNullException(nameof(value), $"string value cannot be null, use {nameof(LocalValue)}.{nameof(Null)} value instead");
203
}
204
205
return new StringLocalValue(value);
0 commit comments