C# Class RiotNet.ConnectionFailedException

Represents an error that occurs when a REST request fails because it could not to connect to the server.
Inheritance: RestException
Datei anzeigen Open project: aj-r/RiotNet

Public Methods

Method Description
ConnectionFailedException ( ) : System.Runtime.Serialization

Creates a new ConnectionFailedException instance.

ConnectionFailedException ( RiotNet.RiotResponse response ) : System.Runtime.Serialization

Creates a new ConnectionFailedException instance.

ConnectionFailedException ( RiotNet.RiotResponse response, Exception innerException ) : System.Runtime.Serialization

Creates a new ConnectionFailedException instance.

ConnectionFailedException ( RiotNet.RiotResponse response, string message ) : System.Runtime.Serialization

Creates a new ConnectionFailedException instance.

ConnectionFailedException ( RiotNet.RiotResponse response, string message, Exception innerException ) : System.Runtime.Serialization

Creates a new ConnectionFailedException instance.

Private Methods

Method Description
ConnectionFailedException ( SerializationInfo info, StreamingContext context ) : System.Runtime.Serialization

Method Details

ConnectionFailedException() public method

Creates a new ConnectionFailedException instance.
public ConnectionFailedException ( ) : System.Runtime.Serialization
return System.Runtime.Serialization

ConnectionFailedException() public method

Creates a new ConnectionFailedException instance.
public ConnectionFailedException ( RiotNet.RiotResponse response ) : System.Runtime.Serialization
response RiotNet.RiotResponse The response.
return System.Runtime.Serialization

ConnectionFailedException() public method

Creates a new ConnectionFailedException instance.
public ConnectionFailedException ( RiotNet.RiotResponse response, Exception innerException ) : System.Runtime.Serialization
response RiotNet.RiotResponse The response.
innerException System.Exception The exception that is the cause of the current exception.
return System.Runtime.Serialization

ConnectionFailedException() public method

Creates a new ConnectionFailedException instance.
public ConnectionFailedException ( RiotNet.RiotResponse response, string message ) : System.Runtime.Serialization
response RiotNet.RiotResponse The response.
message string A message that describes the error.
return System.Runtime.Serialization

ConnectionFailedException() public method

Creates a new ConnectionFailedException instance.
public ConnectionFailedException ( RiotNet.RiotResponse response, string message, Exception innerException ) : System.Runtime.Serialization
response RiotNet.RiotResponse The response.
message string A message that describes the error.
innerException System.Exception The exception that is the cause of the current exception.
return System.Runtime.Serialization