tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
Public Member Functions | List of all members
Tgstation.Server.Client.RequestTimeoutException Class Referencesealed

Occurs when the client provides invalid credentials. More...

Inheritance diagram for Tgstation.Server.Client.RequestTimeoutException:
Inheritance graph
[legend]
Collaboration diagram for Tgstation.Server.Client.RequestTimeoutException:
Collaboration graph
[legend]

Public Member Functions

 RequestTimeoutException (HttpResponseMessage responseMessage)
 Initializes a new instance of the RequestTimeoutException class.
 
 RequestTimeoutException ()
 Initializes a new instance of the RequestTimeoutException class.
 
 RequestTimeoutException (string message)
 Initializes a new instance of the RequestTimeoutException class.
 
 RequestTimeoutException (string message, Exception innerException)
 Initializes a new instance of the RequestTimeoutException class.
 

Additional Inherited Members

- Protected Member Functions inherited from Tgstation.Server.Client.ClientException
 ClientException (HttpResponseMessage responseMessage, string message)
 Initializes a new instance of the ClientException class.
 
 ClientException ()
 Initializes a new instance of the ClientException class.
 
 ClientException (string message)
 Initializes a new instance of the ClientException class.
 
 ClientException (string message, Exception innerException)
 Initializes a new instance of the ClientException class.
 
- Properties inherited from Tgstation.Server.Client.ClientException
HttpResponseMessage? ResponseMessage [get]
 The HttpStatusCode of the ClientException.
 

Detailed Description

Occurs when the client provides invalid credentials.

Definition at line 9 of file RequestTimeoutException.cs.

Constructor & Destructor Documentation

◆ RequestTimeoutException() [1/4]

Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException ( HttpResponseMessage  responseMessage)

Initializes a new instance of the RequestTimeoutException class.

Parameters
responseMessageThe HttpResponseMessage for the ClientException.

Definition at line 15 of file RequestTimeoutException.cs.

16 : base(responseMessage, "The request timed out!")
17 {
18 }

◆ RequestTimeoutException() [2/4]

Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException ( )

Initializes a new instance of the RequestTimeoutException class.

Definition at line 23 of file RequestTimeoutException.cs.

24 {
25 }

◆ RequestTimeoutException() [3/4]

Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException ( string  message)

Initializes a new instance of the RequestTimeoutException class.

Parameters
messageThe message for the Exception.

Definition at line 31 of file RequestTimeoutException.cs.

32 : base(message)
33 {
34 }

◆ RequestTimeoutException() [4/4]

Tgstation.Server.Client.RequestTimeoutException.RequestTimeoutException ( string  message,
Exception  innerException 
)

Initializes a new instance of the RequestTimeoutException class.

Parameters
messageThe message for the Exception.
innerExceptionThe inner Exception for the base Exception.

Definition at line 41 of file RequestTimeoutException.cs.

42 : base(message, innerException)
43 {
44 }

The documentation for this class was generated from the following file: