Class ResumeException

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

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

    • ResumeException

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

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

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

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

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

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