Class ExecutionSuspendException

All Implemented Interfaces:
Serializable

public final class ExecutionSuspendException extends ExecutionErrorException
Exception used by the Executable interface to indicate job suspended execution on finding server in Quiesce state.
See Also:
  • Constructor Details

    • ExecutionSuspendException

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

      public ExecutionSuspendException(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.
    • ExecutionSuspendException

      public ExecutionSuspendException(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.
    • ExecutionSuspendException

      public ExecutionSuspendException(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.