C# Class RiotNet.RateLimitExceededException

Represents an error that occurs when a REST request fails because the rate limit has been exceeded.
Inheritance: RestException
Datei anzeigen Open project: aj-r/RiotNet

Public Methods

Method Description
RateLimitExceededException ( ) : System.Runtime.Serialization

Creates a new RateLimitExceededException instance.

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

Creates a new RateLimitExceededException instance.

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

Creates a new RateLimitExceededException instance.

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

Creates a new RateLimitExceededException instance.

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

Creates a new RateLimitExceededException instance.

Private Methods

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

Method Details

RateLimitExceededException() public method

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

RateLimitExceededException() public method

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

RateLimitExceededException() public method

Creates a new RateLimitExceededException instance.
public RateLimitExceededException ( 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

RateLimitExceededException() public method

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

RateLimitExceededException() public method

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