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
ExceptionThe 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
StringThe message that describes the HTTP status code.
innerException
ExceptionThe exception that is the cause of the current exception.