Class InternalServerErrorException
- Namespace
- Cuemon.AspNetCore.Http
- Assembly
- Cuemon.AspNetCore.dll
The exception that is thrown when the server has encountered a situation it does not know how to handle.
public class InternalServerErrorException : HttpStatusCodeException, ISerializable
- Inheritance
-
InternalServerErrorException
- Implements
- Inherited Members
Constructors
InternalServerErrorException()
Initializes a new instance of the InternalServerErrorException class.
public InternalServerErrorException()
InternalServerErrorException(Exception)
Initializes a new instance of the InternalServerErrorException class.
public InternalServerErrorException(Exception innerException)
Parameters
innerException
ExceptionThe exception that is the cause of the current exception.
InternalServerErrorException(String, Exception)
Initializes a new instance of the InternalServerErrorException class.
public InternalServerErrorException(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.