All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rongjih.jwt.SignException Maven / Gradle / Ivy

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy