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

tech.simter.jwt.SignException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package tech.simter.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