Table of Contents

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 Exception

The 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 String

The message that describes the HTTP status code.

innerException Exception

The exception that is the cause of the current exception.

See Also