Package oracle.iam.ida.exception
Class InvalidArgumentException
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.InvalidArgumentException
- All Implemented Interfaces:
Serializable
,oracle.iam.platform.utils.io.XmlPrintable
Exception used when a client invokes an API method with an invalid argument.
Since this error is due to a client programming error, sufficient detail should
be provided to identify the error, but sanitized for end-user consumption.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidArgumentException
(Class entityType, String entityId) Construct an instance of this exception when the requested entity is not found in the specified certification instanceInvalidArgumentException
(String string, Serializable[] serializables) -
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
-
InvalidArgumentException
-
InvalidArgumentException
Construct an instance of this exception when the requested entity is not found in the specified certification instance- Parameters:
entityType
- The requested entity type; requiredentityId
- The requested entity ID; required
-