de.cidaas.jwk.JwkException 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.jwk;
@SuppressWarnings("WeakerAccess")
public class JwkException extends Exception {
public JwkException(String message) {
super(message);
}
public JwkException(String message, Throwable cause) {
super(message, cause);
}
}