Package oracle.as.scheduler
Class ExecutionSuspendException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.ExecutionErrorException
oracle.as.scheduler.ExecutionSuspendException
- All Implemented Interfaces:
Serializable
Exception used by the
Executable
interface to indicate
job suspended execution on finding server in Quiesce state.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnull
detail message.ExecutionSuspendException
(String message) Constructs a new exception with the specified detail message.ExecutionSuspendException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutionSuspendException
public ExecutionSuspendException()Constructs a new exception withnull
detail message. The cause is not initialized. -
ExecutionSuspendException
Constructs a new exception with the specified detail message. The cause is not initialized.- Parameters:
message
- the detail message. This can be retrieved by thegetMessage
method.
-
ExecutionSuspendException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message. This can be retrieved by thegetMessage
method.cause
- the cause. This can be retrieved by thegetCause
method.
-
ExecutionSuspendException
Constructs a new exception with the specified cause. The detail message will benull
.- Parameters:
cause
- the cause. This can be retrieved by thegetCause
method.
-