de.cidaas.jwt.exceptions.SignatureVerificationException 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.algorithms.Algorithm;
import de.cidaas.jwt.exceptions.JWTVerificationException;
public class SignatureVerificationException extends JWTVerificationException {
public SignatureVerificationException(Algorithm algorithm) {
this(algorithm, null);
}
public SignatureVerificationException(Algorithm algorithm, Throwable cause) {
super("The Token's Signature resulted invalid when verified using the Algorithm: " + algorithm, cause);
}
}