Uses of Class
com.auth0.jwt.exceptions.JWTVerificationException
-
Packages that use JWTVerificationException Package Description com.auth0.jwt com.auth0.jwt.exceptions com.auth0.jwt.interfaces -
-
Uses of JWTVerificationException in com.auth0.jwt
Methods in com.auth0.jwt that throw JWTVerificationException Modifier and Type Method Description DecodedJWTJWTVerifier. verify(DecodedJWT jwt)Perform the verification against the given decoded JWT, using any previous configured options.DecodedJWTJWTVerifier. verify(java.lang.String token)Perform the verification against the given Token, using any previous configured options. -
Uses of JWTVerificationException in com.auth0.jwt.exceptions
Subclasses of JWTVerificationException in com.auth0.jwt.exceptions Modifier and Type Class Description classAlgorithmMismatchExceptionThe exception that will be thrown if the exception doesn't match the one mentioned in the JWT Header.classIncorrectClaimExceptionThis exception is thrown when the expected value is not found while verifying the Claims.classInvalidClaimExceptionThe exception that will be thrown while verifying Claims of a JWT.classJWTDecodeExceptionThe exception that is thrown when any part of the token contained an invalid JWT or JSON format.classMissingClaimExceptionThis exception is thrown when the claim to be verified is missing.classSignatureVerificationExceptionThe exception that is thrown if the Signature verification fails.classTokenExpiredExceptionThe exception that is thrown if the token is expired. -
Uses of JWTVerificationException in com.auth0.jwt.interfaces
Methods in com.auth0.jwt.interfaces that throw JWTVerificationException Modifier and Type Method Description DecodedJWTJWTVerifier. verify(DecodedJWT jwt)Performs the verification against the givenDecodedJWT.DecodedJWTJWTVerifier. verify(java.lang.String token)Performs the verification against the given Token.
-