io.smallrye.jwt.build.JwtException Maven / Gradle / Ivy
The newest version!
package io.smallrye.jwt.build;
/**
* Base JWT Exception
*/
@SuppressWarnings("serial")
public class JwtException extends RuntimeException {
public JwtException() {
}
public JwtException(String errorMessage) {
super(errorMessage);
}
public JwtException(Throwable t) {
super(t);
}
public JwtException(String errorMessage, Throwable t) {
super(errorMessage, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy