com.auth0.jwk.SigningKeyNotFoundException 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 SigningKeyNotFoundException extends JwkException {
public SigningKeyNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}