Class LifecycleException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.component.ComponentException
org.refcodes.component.LifecycleException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
InitializeException, PauseException, ResumeException, StartException, StopException

public abstract class LifecycleException extends ComponentException
This exception is the base lifecycle exception .
See Also:
  • Constructor Details

    • LifecycleException

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

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

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

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

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

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