public class ExecutionErrorException extends SchedulerException
Executable interface to indicate
an error condition was encountered during execution.Executable,
Serialized Form| Constructor and Description |
|---|
ExecutionErrorException()
Constructs a new exception with
null detail message. |
ExecutionErrorException(String message)
Constructs a new exception with the specified detail message.
|
ExecutionErrorException(String message,
Throwable cause)
Constructs a new exception with the specified detail message
and cause.
|
ExecutionErrorException(Throwable cause)
Constructs a new exception with the specified cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ExecutionErrorException()
null detail message.
The cause is not initialized.public ExecutionErrorException(String message)
message - the detail message. This can be retrieved by
the getMessage method.public ExecutionErrorException(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 ExecutionErrorException(Throwable cause)
null.cause - the cause. This can be retrieved by the
getCause method.