com.atlassian.connect.spring.internal.jwt.JwtInvalidClaimException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlassian-connect-spring-boot-jwt Show documentation
Show all versions of atlassian-connect-spring-boot-jwt Show documentation
Provides JSON Web Token handling for Atlassian Connect for Spring Boot
The newest version!
package com.atlassian.connect.spring.internal.jwt;
/**
* Thrown if an expected claim is missing or the value of a reserved claim did not match its expected format.
*/
public class JwtInvalidClaimException extends JwtVerificationException {
public JwtInvalidClaimException(String message) {
super(message);
}
public JwtInvalidClaimException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy