Class InterruptionException

All Implemented Interfaces:
Serializable

public class InterruptionException extends RuntimeException

Unchecked analog of the standard InterruptedException. Thrown by InterruptionContext.checkInterruption() method.

Author:
Daniel Alievsky
See Also:
  • Constructor Details

    • InterruptionException

      public InterruptionException()
      Constructs an instance of this class.
    • InterruptionException

      public InterruptionException(String message)
      Constructs an instance of this class with the specified detail message.
      Parameters:
      message - the detail message.
    • InterruptionException

      public InterruptionException(Throwable cause)
      Constructs an instance of this class with the specified cause.
      Parameters:
      cause - the cause of this exception.