Class InterruptionException

All Implemented Interfaces:
Serializable

public class InterruptionException extends JebRuntimeException
Runtime exception raised when a long-running JEB operation is interrupted or cancelled.
See Also:
  • Constructor Details

    • InterruptionException

      public InterruptionException()
      Create an exception with no detail message.
    • InterruptionException

      public InterruptionException(String message)
      Create an exception with a detail message.
      Parameters:
      message - the detail message
    • InterruptionException

      public InterruptionException(Throwable cause)
      Create an exception with a cause.
      Parameters:
      cause - the cause
    • InterruptionException

      public InterruptionException(String message, Throwable cause)
      Create an exception with a detail message and cause.
      Parameters:
      message - the detail message
      cause - the cause