public final class ExecutionManualRecoveryException extends ExecutionErrorException
This exception should be thrown from an AsyncExecutable that is:
1. unable to determine whether the remote job has been started
2. encounters an error locally after starting the remote job.
| Constructor and Description |
|---|
ExecutionManualRecoveryException()
Constructs a new exception with
null detail message. |
ExecutionManualRecoveryException(String message)
Constructs a new exception with the specified detail message.
|
ExecutionManualRecoveryException(String message,
Throwable cause)
Constructs a new exception with the specified detail message
and cause.
|
ExecutionManualRecoveryException(Throwable cause)
Constructs a new exception with the specified cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ExecutionManualRecoveryException()
null detail message.
The cause is not initialized.public ExecutionManualRecoveryException(String message)
message - the detail message. This can be retrieved by
the getMessage method.public ExecutionManualRecoveryException(String message, Throwable cause)
message - the detail message. This can be retrieved by
the getMessage method.cause - the cause. This can be retrieved by the
getCause method.public ExecutionManualRecoveryException(Throwable cause)
null.cause - the cause. This can be retrieved by the
getCause method.