Class UnprocessableEntityException

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

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

    • UnprocessableEntityException

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

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

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

      public UnprocessableEntityException(String aMessage)
      Instantiates a new unprocessable entity exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • UnprocessableEntityException

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

      public UnprocessableEntityException(Throwable aCause)
      Instantiates a new unprocessable entity exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.