de.cidaas.jwt.exceptions.JWTDecodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cidaas-interceptor-spring-security Show documentation
Show all versions of cidaas-interceptor-spring-security Show documentation
Interceptor for Cidaas Java Spring Clients
package de.cidaas.jwt.exceptions;
import de.cidaas.jwt.exceptions.JWTVerificationException;
public class JWTDecodeException extends JWTVerificationException {
public JWTDecodeException(String message) {
this(message, null);
}
public JWTDecodeException(String message, Throwable cause) {
super(message, cause);
}
}