Package oracle.as.scheduler
Class ValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.as.scheduler.SchedulerException
oracle.as.scheduler.ValidationException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FrequencyValidationException
Exception used to indicate a failed validation.
This may be used to indicate failures in metadata object validations before persisting into the metadata repository. It may also be used for failed validations during runtime service or metadata service operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructorConstructor with a detailed message.ValidationException
(String msg, boolean isRefIntegrityViolation) Constructor with a detailed message.ValidationException
(String msg, Throwable cause) Constructor to create the instance with an message and cause.ValidationException
(Throwable cause) Constructor that creates the instance based on a cause. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates if this exception is related to violation of referential integrity.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ValidationException
public ValidationException()Default constructor -
ValidationException
Constructor with a detailed message.- Parameters:
msg
- the detailed message associated with this exception
-
ValidationException
Constructor with a detailed message.- Parameters:
msg
- the detailed message associated with this exceptionisRefIntegrityViolation
-true
if this exception is related to violation of refrential integrity of database.
-
ValidationException
Constructor that creates the instance based on a cause.- Parameters:
cause
- the underlying cause for exception
-
ValidationException
Constructor to create the instance with an message and cause.- Parameters:
msg
- the detailed message to be associated with the exceptioncause
- the underlying cause
-
-
Method Details
-
isRefIntegrityException
public boolean isRefIntegrityException()Indicates if this exception is related to violation of referential integrity.- Returns:
true
if it is related to referential integrity, orfalse
if otherwise
-