Class PauseException

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

public class PauseException
extends ComponentException
Thrown in case pausing a component caused problems. Usually a method similar to "pause()" throws such an exception.
See Also:
Serialized Form
  • 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