tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
RequestTimeoutException.cs
Go to the documentation of this file.
1using System;
2using System.Net.Http;
3
5{
10 {
15 public RequestTimeoutException(HttpResponseMessage responseMessage)
16 : base(responseMessage, "The request timed out!")
17 {
18 }
19
24 {
25 }
26
31 public RequestTimeoutException(string message)
32 : base(message)
33 {
34 }
35
41 public RequestTimeoutException(string message, Exception innerException)
42 : base(message, innerException)
43 {
44 }
45 }
46}
Exceptions thrown by IRestServerClients.
Occurs when the client provides invalid credentials.
RequestTimeoutException()
Initializes a new instance of the RequestTimeoutException class.
RequestTimeoutException(string message, Exception innerException)
Initializes a new instance of the RequestTimeoutException class.
RequestTimeoutException(string message)
Initializes a new instance of the RequestTimeoutException class.
RequestTimeoutException(HttpResponseMessage responseMessage)
Initializes a new instance of the RequestTimeoutException class.