Class CeaseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.component.ComponentException
org.refcodes.component.CeaseException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class CeaseException extends ComponentException
Thrown in case ceasing a component caused problems. Usually a method similar to "cease()" throws such an exception.
See Also:
  • Constructor Details

    • CeaseException

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

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

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

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

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

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