Class ComponentException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.component.ComponentException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
CeaseException, CloseException, DecomposeException, DigestException, DisposeException, LifecycleException, ResetException

public abstract class ComponentException extends org.refcodes.exception.AbstractException
This exception is the base exception for the component package.
See Also:
  • Constructor Details

    • ComponentException

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

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

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

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

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

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