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 9d3405b commit aba7d74Copy full SHA for aba7d74
RestSharp.Net4/Extensions/ResponseStatusExtensions.cs
@@ -18,7 +18,7 @@ public static WebException ToWebException(this ResponseStatus responseStatus)
18
case ResponseStatus.None:
19
return new WebException("The request could not be processed.", WebExceptionStatus.ServerProtocolViolation);
20
case ResponseStatus.Error:
21
- return new WebException("An error occured while processing the request.", WebExceptionStatus.ServerProtocolViolation);
+ return new WebException("An error occurred while processing the request.", WebExceptionStatus.ServerProtocolViolation);
22
case ResponseStatus.TimedOut:
23
return new WebException("The request timed-out.", WebExceptionStatus.Timeout);
24
case ResponseStatus.Aborted:
0 commit comments