Class PayloadTooLargeException
- Namespace
- Cuemon.AspNetCore.Http
- Assembly
- Cuemon.AspNetCore.dll
The exception that is thrown when the request entity is larger than limits defined by server.
public class PayloadTooLargeException : HttpStatusCodeException, ISerializable
- Inheritance
-
PayloadTooLargeException
- Implements
- Inherited Members
Constructors
PayloadTooLargeException()
Initializes a new instance of the PayloadTooLargeException class.
public PayloadTooLargeException()
PayloadTooLargeException(Exception)
Initializes a new instance of the PayloadTooLargeException class.
public PayloadTooLargeException(Exception innerException)
Parameters
innerException
ExceptionThe exception that is the cause of the current exception.
PayloadTooLargeException(String, Exception)
Initializes a new instance of the PayloadTooLargeException class.
public PayloadTooLargeException(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.