Class HttpRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.web.WebRuntimeException
org.refcodes.web.HttpRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
HttpStatusRuntimeException

public abstract class HttpRuntimeException extends WebRuntimeException
The Class HttpRuntimeException.
See Also:
  • Constructor Details

    • HttpRuntimeException

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

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

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

      public HttpRuntimeException(String aMessage)
      Instantiates a new http runtime exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • HttpRuntimeException

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

      public HttpRuntimeException(Throwable aCause)
      Instantiates a new http runtime exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.