Table of Contents

Class ConflictException

Namespace
Cuemon.AspNetCore.Http
Assembly
Cuemon.AspNetCore.dll

The exception that is thrown when a request conflicts with the current state of the server.

public class ConflictException : HttpStatusCodeException, ISerializable
Inheritance
ConflictException
Implements
Inherited Members

Constructors

ConflictException()

Initializes a new instance of the ConflictException class.

public ConflictException()

ConflictException(Exception)

Initializes a new instance of the ConflictException class.

public ConflictException(Exception innerException)

Parameters

innerException Exception

The exception that is the cause of the current exception.

ConflictException(String, Exception)

Initializes a new instance of the ConflictException class.

public ConflictException(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