Package oracle.as.scheduler
Class RuntimeStoreLockException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.RuntimeServiceException
oracle.as.scheduler.RuntimeStoreAccessException
oracle.as.scheduler.RuntimeStoreLockException
- All Implemented Interfaces:
Serializable
Exception used to indicate that an Enterprise Scheduler runtime store
lock could not be obtained.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.Constructor with a detailed message.RuntimeStoreLockException
(String msg, Throwable cause) Constructor to create the instance with an message and cause.Constructor that creates the instance based on a 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
-
RuntimeStoreLockException
public RuntimeStoreLockException()Default constructor. -
RuntimeStoreLockException
Constructor with a detailed message.- Parameters:
msg
- the detailed message associated with this exception
-
RuntimeStoreLockException
Constructor that creates the instance based on a cause.- Parameters:
cause
- the underlying cause for exception
-
RuntimeStoreLockException
Constructor to create the instance with an message and cause.- Parameters:
msg
- the detailed message to be associated with the exceptioncause
- the underlying cause.
-