Skip to content

Commit a5c4840

Browse files
committed
Improve error message
1 parent 697cdc2 commit a5c4840

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/src/webdriver/Proxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public Proxy(Dictionary<string, object> settings)
141141
{
142142
foreach (object? address in addressesAsArray)
143143
{
144-
bypassAddresses.Add(address?.ToString() ?? throw new ArgumentException("noProxy list contained null element", nameof(settings)));
144+
bypassAddresses.Add(address?.ToString() ?? throw new ArgumentException("Proxy bypass address list \"noProxy\" contained a null element", nameof(settings)));
145145
}
146146
}
147147
}

0 commit comments

Comments
 (0)