Class PauseException

All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class PauseException extends LifecycleException
Thrown in case pausing a component caused problems. Usually a method similar to "pause()" throws such an exception.
See Also:
  • Constructor Details

    • PauseException

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

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

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

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

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

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