Class StructureException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.struct.StructureException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
KeyNotFoundException

public abstract class StructureException extends org.refcodes.exception.AbstractException
The StructureException is the base checked exception for this package.
See Also:
  • Constructor Details

    • StructureException

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

      public StructureException(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.
    • StructureException

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

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

      public StructureException(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.
    • StructureException

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