Class NotFoundException
- Namespace
- Cuemon.AspNetCore.Http
- Assembly
- Cuemon.AspNetCore.dll
The exception that is thrown when the server can not find the requested resource.
public class NotFoundException : HttpStatusCodeException, ISerializable
- Inheritance
-
NotFoundException
- Implements
- Inherited Members
Constructors
NotFoundException()
Initializes a new instance of the NotFoundException class.
public NotFoundException()
NotFoundException(Exception)
Initializes a new instance of the NotFoundException class.
public NotFoundException(Exception innerException)
Parameters
innerException
ExceptionThe exception that is the cause of the current exception.
NotFoundException(String, Exception)
Initializes a new instance of the NotFoundException class.
public NotFoundException(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.