Package oracle.as.scheduler
Class RuntimeServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.RuntimeServiceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
JobCancelledException
,RollbackException
,RuntimeIllegalOperationException
,RuntimeServiceAccessControlException
,RuntimeStoreAccessException
Exception used by
RuntimeService
to indicate system errors.
This also serves as the base class for various other Exception classes
used by the Enterprise Scheduler runtime service subsystem.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructorConstructor with a detailed message.RuntimeServiceException
(String msg, Throwable cause) Constructor with a detailed message and underlying cause.RuntimeServiceException
(Throwable cause) Constructor with the underlying 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
-
RuntimeServiceException
public RuntimeServiceException()Constructor -
RuntimeServiceException
Constructor with a detailed message.- Parameters:
msg
- the associated detailed message
-
RuntimeServiceException
Constructor with the underlying cause.- Parameters:
cause
- the underlying cause for exception.
-
RuntimeServiceException
Constructor with a detailed message and underlying cause.- Parameters:
msg
- the detailed message for the exception.cause
- underlying cause for the exception.
-