Class UnprocessableEntityRuntimeException

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

public class UnprocessableEntityRuntimeException extends HttpStatusRuntimeException
The Class UnprocessableEntityRuntimeException.
See Also:
  • Constructor Details

    • UnprocessableEntityRuntimeException

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

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

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

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

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

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