com.nimbusds.jose.KeyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimbus-jose-jwt Show documentation
Show all versions of nimbus-jose-jwt Show documentation
Java library for Javascript Object Signing and Encryption (JOSE) and
JSON Web Tokens (JWT)
package com.nimbusds.jose;
/**
* Key exception.
*
* @author Vladimir Dzhuvinov
* @version 2015-06-29
*/
public class KeyException extends JOSEException {
/**
* Creates a new key exception with the specified message.
*
* @param message The exception message.
*/
public KeyException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy