Package oracle.as.scheduler
Class RequestNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.NotFoundException
oracle.as.scheduler.RequestNotFoundException
- All Implemented Interfaces:
Serializable
Exception that indicates the request is not found in the system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.Constructor with a detailed message.RequestNotFoundException
(String msg, long requestId) Constructor with a detailed message.RequestNotFoundException
(String msg, Throwable cause) Constructor with a detailed message and underlying cause.RequestNotFoundException
(String msg, Throwable cause, long requestId) Constructor with a detailed message and underlying cause.Constructor with the underlying cause.RequestNotFoundException
(Throwable cause, long requestId) Constructor with the underlying cause. -
Method Summary
Modifier and TypeMethodDescriptionRetrieve the request ID associated with this object.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RequestNotFoundException
public RequestNotFoundException()Constructor. -
RequestNotFoundException
Constructor with a detailed message.- Parameters:
msg
- the associated detailed message
-
RequestNotFoundException
Constructor with a detailed message.- Parameters:
msg
- the associated detailed messagerequestId
- the request ID that is not in the system
-
RequestNotFoundException
Constructor with the underlying cause.- Parameters:
cause
- the underlying cause for exception.
-
RequestNotFoundException
Constructor with the underlying cause.- Parameters:
cause
- the underlying cause for exception.requestId
- the request ID that is not in the system
-
RequestNotFoundException
Constructor with a detailed message and underlying cause.- Parameters:
msg
- the detailed message for the exception.cause
- the underlying cause for the exception.
-
RequestNotFoundException
Constructor with a detailed message and underlying cause.- Parameters:
msg
- the detailed message for the exception.cause
- the underlying cause for the exception.requestId
- the request ID that is not in the system
-
-
Method Details
-
getRequestId
Retrieve the request ID associated with this object.- Returns:
- the request ID, or
null
if none
-