Class TooManyRequestsException
- Namespace
- Cuemon.AspNetCore.Http
- Assembly
- Cuemon.AspNetCore.dll
The exception that is thrown when the user has sent too many requests in a given amount of time ("rate limiting").
public class TooManyRequestsException : HttpStatusCodeException, ISerializable
- Inheritance
-
TooManyRequestsException
- Implements
- Derived
- Inherited Members
Constructors
TooManyRequestsException()
Initializes a new instance of the TooManyRequestsException class.
public TooManyRequestsException()
TooManyRequestsException(Exception)
Initializes a new instance of the TooManyRequestsException class.
public TooManyRequestsException(Exception innerException)
Parameters
innerException
ExceptionThe exception that is the cause of the current exception.
TooManyRequestsException(String, Exception)
Initializes a new instance of the TooManyRequestsException class.
public TooManyRequestsException(string message, Exception innerException = null)
Parameters
message
StringThe message that describes the HTTP status code.
innerException
ExceptionThe exception that is the cause of the current exception.