Class StructureRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.struct.StructureRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
AmbigousKeyRuntimeException, KeyNotFoundRuntimeException

public abstract class StructureRuntimeException extends org.refcodes.exception.AbstractRuntimeException
The StructureRuntimeException is the base runtime exception for this package.
See Also:
  • Constructor Details

    • StructureRuntimeException

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

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

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

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

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

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