Class NetException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.net.NetException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
PortNotFoundException

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

    • NetException

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

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

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

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

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

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