Package oracle.iam.platform.kernel
Class ValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
oracle.iam.platform.utils.SuperRuntimeException
oracle.iam.platform.kernel.OrchestrationException
oracle.iam.platform.kernel.ValidationException
- All Implemented Interfaces:
Serializable
,oracle.iam.platform.utils.io.XmlPrintable
public class ValidationException
extends oracle.iam.platform.kernel.OrchestrationException
Exception that should be used by validation event handlers to notify kernel of validation failures
- Author:
- asmaram
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new validation exception with null as its detail message.ValidationException
(String message) Constructs a new validation exception with the specified detail message.ValidationException
(String message, Throwable cause) Constructs a new validation exception with the specified detail message and cause.ValidationException
(Throwable cause) Constructs a new validation exception with the specified cause. -
Method Summary
Methods inherited from class oracle.iam.platform.kernel.OrchestrationException
getPid, getProcessID, setPid, setProcessID
Methods inherited from class oracle.iam.platform.utils.SuperRuntimeException
addError, convertErrorData, copyErrorInfo, getErrorCode, getErrorData, getErrors, getLocalizedMessage, getLocalizedMessages, getMessages, hasMultipleErrors, setErrorCode, setErrorData, setErrors, toString, xprint, xprint
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
ValidationException
public ValidationException()Constructs a new validation exception with null as its detail message. -
ValidationException
Constructs a new validation exception with the specified detail message.- Parameters:
message
- the detail message
-
ValidationException
Constructs a new validation exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
ValidationException
Constructs a new validation exception with the specified cause.- Parameters:
cause
- the cause
-