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