Package com.authlete.common.assurance
Class IdentityAssuranceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.authlete.common.assurance.IdentityAssuranceException
-
- All Implemented Interfaces:
Serializable
public class IdentityAssuranceException extends RuntimeException
An exception that indicates the structure does not conform to the specification (OpenID Connect for Identity Assurance 1.0).- Since:
- 2.63
- See Also:
- OpenID Connect for Identity Assurance 1.0, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IdentityAssuranceException()
The default constructor.IdentityAssuranceException(String message)
The constructor with a message.IdentityAssuranceException(String message, Throwable cause)
The constructor with a message and a cause.IdentityAssuranceException(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 Detail
-
IdentityAssuranceException
public IdentityAssuranceException()
The default constructor.
-
IdentityAssuranceException
public IdentityAssuranceException(String message)
The constructor with a message.- Parameters:
message
- A message that explains this exception.
-
IdentityAssuranceException
public IdentityAssuranceException(Throwable cause)
The constructor with a cause.- Parameters:
cause
- The cause of this exception.
-
-