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

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

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

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy