Class WebRuntimeException

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

public abstract class WebRuntimeException extends org.refcodes.exception.AbstractRuntimeException
The base runtime exception for networking related issues.
See Also:
  • Constructor Details

    • WebRuntimeException

      public WebRuntimeException(String aMessage, String aErrorCode)
      Instantiates a new net runtime exception.
      Parameters:
      aMessage - the message
      aErrorCode - the error code
    • WebRuntimeException

      public WebRuntimeException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new net runtime exception.
      Parameters:
      aMessage - the message
      aCause - the cause
      aErrorCode - the error code
    • WebRuntimeException

      public WebRuntimeException(String message, Throwable cause)
      Instantiates a new net runtime exception.
      Parameters:
      message - the message
      cause - the cause
    • WebRuntimeException

      public WebRuntimeException(String message)
      Instantiates a new net runtime exception.
      Parameters:
      message - the message
    • WebRuntimeException

      public WebRuntimeException(Throwable aCause, String aErrorCode)
      Instantiates a new net runtime exception.
      Parameters:
      aCause - the cause
      aErrorCode - the error code
    • WebRuntimeException

      public WebRuntimeException(Throwable cause)
      Instantiates a new net runtime exception.
      Parameters:
      cause - the cause