Class IdentityAssertionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.forgerock.openig.handler.assertion.IdentityAssertionException
- All Implemented Interfaces:
Serializable
An exception specific to issues within the
assertion
package.- See Also:
-
Constructor Summary
ConstructorDescriptionIdentityAssertionException
(String message) Create a new instance with a specific message.IdentityAssertionException
(String message, Exception cause) Create a new instance with a specific message and exception cause.IdentityAssertionException
(String message, List<Violation> violations) Create a new instance with a specific message and violations. -
Method Summary
Modifier and TypeMethodDescriptionReturn any violations associated with this exception, may be empty.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IdentityAssertionException
Create a new instance with a specific message.- Parameters:
message
- The message related to the generated exception.
-
IdentityAssertionException
Create a new instance with a specific message and violations.- Parameters:
message
- The message related to the generated exception.violations
- The violations related to the generated exception.
-
IdentityAssertionException
Create a new instance with a specific message and exception cause.- Parameters:
message
- The message related to the generated exception.cause
- The cause associated with this exception.
-
-
Method Details
-
violations
Return any violations associated with this exception, may be empty.- Returns:
- any violations associated with this exception, may be empty.
-