com.rongjih.jwt.SignException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rj-jwt4j Show documentation
Show all versions of rj-jwt4j Show documentation
Pure Java implementation for JSON Web Token (JWT)
The newest version!
package com.rongjih.jwt;
/**
* The Data Signed Exception.
*
* @author RJ
* @since JDK1.8
*/
public class SignException extends RuntimeException {
public SignException() {
super();
}
public SignException(String message) {
super(message);
}
public SignException(String message, Throwable cause) {
super(message, cause);
}
public SignException(Throwable cause) {
super(cause);
}
}