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 message
      aErrorCode - the error code
    • PauseException

      public PauseException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new pause exception.
      Parameters:
      aMessage - the message
      aCause - the cause
      aErrorCode - the error code
    • PauseException

      public PauseException(String message, Throwable cause)
      Instantiates a new pause exception.
      Parameters:
      message - the message
      cause - the cause
    • PauseException

      public PauseException(String message)
      Instantiates a new pause exception.
      Parameters:
      message - the message
    • PauseException

      public PauseException(Throwable aCause, String aErrorCode)
      Instantiates a new pause exception.
      Parameters:
      aCause - the cause
      aErrorCode - the error code
    • PauseException

      public PauseException(Throwable cause)
      Instantiates a new pause exception.
      Parameters:
      cause - the cause