com.atlassian.connect.spring.internal.jwt.JwtVerificationException 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;
/**
* Indicates a JWT was well-formed, but failed to validate.
*/
public abstract class JwtVerificationException extends Exception {
protected JwtVerificationException(String message) {
super(message);
}
protected JwtVerificationException(String message, Throwable cause) {
super(message, cause);
}
protected JwtVerificationException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy