Package com.auth0.exception
Class IdTokenValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.auth0.exception.IdTokenValidationException
- All Implemented Interfaces:
Serializable
Represents an error during the validation of an OIDC-compliant token.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIdTokenValidationException(String message) Creates a newIdTokenValidationException.IdTokenValidationException(String message, Throwable cause) Creates a newIdTokenValidationException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IdTokenValidationException
Creates a newIdTokenValidationException.- Parameters:
message- the exception message.
-
IdTokenValidationException
Creates a newIdTokenValidationException.- Parameters:
message- the exception message.cause- the cause of the exception.
-