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