Package oracle.as.scheduler
Class MetadataServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.MetadataServiceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MetadataIllegalOperationException
,MetadataServiceAccessControlException
Exception used by
MetadataService
to indicate system errors.
This also serves as the base class for various other Exception classes
used by the Enterprise Scheduler metadata service subsystem.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.Constructor with a detailed message.MetadataServiceException
(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
-
MetadataServiceException
public MetadataServiceException()Default constructor. -
MetadataServiceException
Constructor with a detailed message.- Parameters:
msg
- the detailed message associated with this exception.
-
MetadataServiceException
Constructor that creates the instance based on a cause.- Parameters:
cause
- the underlying cause for exception.
-
MetadataServiceException
Constructor to create the instance with an message and cause.- Parameters:
msg
- the detailed message to be associated with the exception.cause
- the underlying cause.
-