com.auth0.jwk.JwkException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwks-rsa Show documentation
Show all versions of jwks-rsa Show documentation
JSON Web Key Set parser library
package com.auth0.jwk;
@SuppressWarnings("WeakerAccess")
public class JwkException extends Exception {
public JwkException(String message) {
super(message);
}
public JwkException(String message, Throwable cause) {
super(message, cause);
}
}