de.cidaas.jwt.exceptions.SignatureGenerationException 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.JWTCreationException;
public class SignatureGenerationException extends JWTCreationException {
public SignatureGenerationException(Algorithm algorithm, Throwable cause) {
super("The Token's Signature couldn't be generated when signing using the Algorithm: " + algorithm, cause);
}
}