Class ConflictException

All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap, org.refcodes.mixin.StatusCodeAccessor<HttpStatusCode>

public class ConflictException extends HttpStatusException
The Class ConflictException.
See Also:
  • Constructor Details

    • ConflictException

      public ConflictException(String aMessage, String aErrorCode)
      Instantiates a new conflict exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • ConflictException

      public ConflictException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new conflict exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • ConflictException

      public ConflictException(String aMessage, Throwable aCause)
      Instantiates a new conflict exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • ConflictException

      public ConflictException(String aMessage)
      Instantiates a new conflict exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • ConflictException

      public ConflictException(Throwable aCause, String aErrorCode)
      Instantiates a new conflict exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • ConflictException

      public ConflictException(Throwable aCause)
      Instantiates a new conflict exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.