Class InvalidHashException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.nimbusds.openid.connect.sdk.validators.InvalidHashException
-
- All Implemented Interfaces:
Serializable
public class InvalidHashException extends Exception
Invalid access token / code hash exception.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static InvalidHashException
INVALID_ACCESS_T0KEN_HASH_EXCEPTION
Access token hash mismatch exception.static InvalidHashException
INVALID_CODE_HASH_EXCEPTION
Authorisation code hash mismatch exception.static InvalidHashException
INVALID_STATE_HASH_EXCEPTION
State hash mismatch exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
INVALID_ACCESS_T0KEN_HASH_EXCEPTION
public static final InvalidHashException INVALID_ACCESS_T0KEN_HASH_EXCEPTION
Access token hash mismatch exception.
-
INVALID_CODE_HASH_EXCEPTION
public static final InvalidHashException INVALID_CODE_HASH_EXCEPTION
Authorisation code hash mismatch exception.
-
INVALID_STATE_HASH_EXCEPTION
public static final InvalidHashException INVALID_STATE_HASH_EXCEPTION
State hash mismatch exception.
-
-