Class ComponentRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.component.ComponentRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
CeaseException.CeaseRuntimeException, CloseException.CloseRuntimeException, DecomposeException.DecomposeRuntimeException, DigestException.DigestRuntimeException, DisposeException.DisposeRuntimeException, HandleTimeoutRuntimeException, IllegalHandleStateChangeRuntimeException, LifecycleException.LifecycleRuntimeException, ResetException.ResetRuntimeException, UnknownHandleRuntimeException, UnsupportedHandleOperationRuntimeException

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

    • ComponentRuntimeException

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

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

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

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

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

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