Package oracle.as.scheduler
Class ExecutionPausedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.ExecutionPausedException
- All Implemented Interfaces:
Serializable
Exception used by the
Executable
interface to indicate request
execution should be paused to allow submitted sub-requests to execute.
A request executable that submits a sub-request must pause before the
sub-request will be executed. After a job Executable
submits
a sub-request, this exception must thrown by the request executable
so the Enterprise Scheduler subsystem will pause the request.
An application paused state value can be associated with this exception. The paused state will be available to the resumed request via the request execution context when the request is resumed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception withnull
detail message andnull
paused state.ExecutionPausedException
(String message) Constructs a new exception with the specified detail message andnull
paused state.ExecutionPausedException
(String message, String state) Constructs a new exception with the specified detail message and paused state. -
Method Summary
Modifier and TypeMethodDescriptionGets the paused state associated with this exception.void
setPausedState
(String state) Sets the paused state associated with this exception.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecutionPausedException
public ExecutionPausedException()Constructs a new exception withnull
detail message andnull
paused state. The cause is not initialized. -
ExecutionPausedException
Constructs a new exception with the specified detail message andnull
paused state. The cause is not initialized.- Parameters:
message
- the detail message. This can be retrieved by thegetMessage
method.
-
ExecutionPausedException
Constructs a new exception with the specified detail message and paused state. The cause is not initialized.The paused state will be made available to the request executable once the sub-requests have completed and the request is resumed.
- Parameters:
message
- the detail message. This can be retrieved by thegetMessage
method.state
- the application-specified paused state. This can be retrieved by thegetPausedState
method.
-
-
Method Details
-
getPausedState
Gets the paused state associated with this exception.- Returns:
- the paused state, or
null
if none
-
setPausedState
Sets the paused state associated with this exception.- Parameters:
state
- the application-specified paused state. This can benull
.
-