com.nimbusds.jose.proc.BadJWSException 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.proc;
/**
* Bad JSON Web Signature (JWS) exception. Used to indicate an invalid
* signature or hash-based message authentication code (HMAC).
*
* @author Vladimir Dzhuvinov
* @version 2015-06-11
*/
public class BadJWSException extends BadJOSEException {
/**
* Creates a new bad JWS exception.
*
* @param message The exception message.
*/
public BadJWSException(final String message) {
super(message);
}
/**
* Creates a new bad JWS exception.
*
* @param message The exception message.
* @param cause The exception cause.
*/
public BadJWSException(final String message, final Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy