Class BadRequestRuntimeException

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

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

    • BadRequestRuntimeException

      public BadRequestRuntimeException(String aMessage, String aErrorCode)
      Instantiates a new bad request runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • BadRequestRuntimeException

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

      public BadRequestRuntimeException(String aMessage, Throwable aCause)
      Instantiates a new bad request runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • BadRequestRuntimeException

      public BadRequestRuntimeException(String aMessage)
      Instantiates a new bad request runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • BadRequestRuntimeException

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

      public BadRequestRuntimeException(Throwable aCause)
      Instantiates a new bad request runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.