Package oracle.as.scheduler
Class NotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.NotFoundException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MetadataNotFoundException
,RequestNotFoundException
Exception used to indicate that the requested object is not found
in the system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructorNotFoundException
(String msg) Constructor with a detailed message.NotFoundException
(String msg, Throwable cause) Constructor with a detailed message and underlying cause.NotFoundException
(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
-
NotFoundException
public NotFoundException()Constructor -
NotFoundException
Constructor with a detailed message.- Parameters:
msg
- the associated detailed message
-
NotFoundException
Constructor with the underlying cause.- Parameters:
cause
- the underlying cause for exception.
-
NotFoundException
Constructor with a detailed message and underlying cause.- Parameters:
msg
- the detailed message for the exception.cause
- the underlying cause for the exception.
-