net.tokensmith.jwt.serialization.exception.EncryptException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwt Show documentation
Show all versions of jwt Show documentation
Java Implementation of JSON Web Tokens
package net.tokensmith.jwt.serialization.exception;
public class EncryptException extends Exception {
public EncryptException(String message, Throwable cause) {
super(message, cause);
}
}