Package oracle.iam.ida.exception
Class IDAEngineException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
oracle.iam.platform.utils.SuperRuntimeException
oracle.iam.ida.exception.IDARuntimeException
oracle.iam.ida.exception.IDAEngineException
- All Implemented Interfaces:
Serializable
,oracle.iam.platform.utils.io.XmlPrintable
Exception to be thrown when something goes wrong in the server.
Contains user friendly error message and a pointer to the original
exception printed in the log. Note that we do not wrap the original
exception, because it may contain SQL code or other sensitive
implementation details, and is typically not of interest to the end-user.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIDAEngineException
(String logKey) constructs a Identity Audit engine exception. -
Method Summary
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
-
IDAEngineException
constructs a Identity Audit engine exception.- Parameters:
logKey
- - string value used as a pointer. it would be used for pointing to the exception in the log file.
-