Class ConstraintException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.authlete.common.assurance.constraint.ConstraintException
- All Implemented Interfaces:
Serializable
An exception that indicates the structure does not conform to the
specification (OpenID Connect for Identity Assurance 1.0).
- Since:
- 2.63
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThe default constructor.ConstraintException(String message) The constructor with a message.ConstraintException(String message, Throwable cause) The constructor with a message and a cause.ConstraintException(Throwable cause) The constructor with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConstraintException
public ConstraintException()The default constructor. -
ConstraintException
The constructor with a message.- Parameters:
message- A message that explains this exception.
-
ConstraintException
The constructor with a cause.- Parameters:
cause- The cause of this exception.
-
ConstraintException
The constructor with a message and a cause.- Parameters:
message- A message that explains this exception.cause- The cause of this exception.
-