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

io.smallrye.jwt.build.JwtSignatureException Maven / Gradle / Ivy

The newest version!
package io.smallrye.jwt.build;

/**
 * JWT Signature Exception
 */
@SuppressWarnings("serial")
public class JwtSignatureException extends JwtException {
    public JwtSignatureException() {
    }

    public JwtSignatureException(String errorMessage) {
        super(errorMessage);
    }

    public JwtSignatureException(Throwable t) {
        super(t);
    }

    public JwtSignatureException(String errorMessage, Throwable t) {
        super(errorMessage, t);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy