Class ExecutionCancelledException

All Implemented Interfaces:
Serializable

public final class ExecutionCancelledException extends SchedulerException
Exception used by the Executable interface to indicate execution cancelled. This exception should be thrown when a condition is encountered such that futher request processing should be cancelled.

This exception may also be thrown by a pre-process callback or post-process callback that detects a condition for request cancellation.

See Also:
  • Constructor Details

    • ExecutionCancelledException

      public ExecutionCancelledException()
      Constructs a new exception with null detail message. The cause is not initialized.
    • ExecutionCancelledException

      public ExecutionCancelledException(String message)
      Constructs a new exception with the specified detail message. The cause is not initialized.
      Parameters:
      message - the detail message. This can be retrieved by the getMessage method.
    • ExecutionCancelledException

      public ExecutionCancelledException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message. This can be retrieved by the getMessage method.
      cause - the cause. This can be retrieved by the getCause method.
    • ExecutionCancelledException

      public ExecutionCancelledException(Throwable cause)
      Constructs a new exception with the specified cause. The detail message will be null.
      Parameters:
      cause - the cause. This can be retrieved by the getCause method.