Class InvalidArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
oracle.iam.platform.utils.SuperRuntimeException
oracle.iam.certification.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. If
more detail is needed, use
CertificationEngineException
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInvalidArgumentException
(Class entityType, Long entityId, String certificationName, Long certificationId) Construct an instance of this exception when the requested entity is not found in the specified certification instanceInvalidArgumentException
(Class entityType, Long entityId, String certificationName, Long certificationId, String taskUid) Construct an instance of this exception when the requested entity is not found in the specified certification taskInvalidArgumentException
(String errorCode, String[] errorData) -
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
public InvalidArgumentException(Class entityType, Long entityId, String certificationName, Long certificationId) 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; requiredcertificationName
- the specified certification name; requiredcertificationId
- The specified certification Id; required
-
InvalidArgumentException
public InvalidArgumentException(Class entityType, Long entityId, String certificationName, Long certificationId, String taskUid) Construct an instance of this exception when the requested entity is not found in the specified certification task- Parameters:
entityType
- The requested entity type; requiredentityId
- The requested entity ID; requiredcertificationName
- the specified certification name; requiredcertificationId
- The specified certification Id; requiredtaskUid
- The specified taskUid; can benull
-