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

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

The newest version!
package com.rongjih.jwt;

/**
 * The Data Decode Exception.
 *
 * @author RJ
 * @since JDK1.8
 */
public class DecodeException extends RuntimeException {
	public DecodeException() {
		super();
	}

	public DecodeException(String message) {
		super(message);
	}

	public DecodeException(String message, Throwable cause) {
		super(message, cause);
	}

	public DecodeException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy