Class NetRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.net.NetRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
PortNotFoundRuntimeException

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

    • NetRuntimeException

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

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

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

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

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

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