com.atlassian.connect.spring.internal.jwt.InvalidKeyException 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 the supplied key is not valid.
* The source throwable will contain the underlying failure and error message.
*/
public class InvalidKeyException extends RuntimeException {
public InvalidKeyException() {
}
public InvalidKeyException(String message) {
super(message);
}
public InvalidKeyException(String message, Throwable cause) {
super(message, cause);
}
public InvalidKeyException(Throwable cause) {
super(cause);
}
public InvalidKeyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy