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

com.atlassian.connect.spring.internal.jwt.JwtVerificationException Maven / Gradle / Ivy

package com.atlassian.connect.spring.internal.jwt;

/**
 * Indicates a JWT was well-formed, but failed to validate.
 */
public abstract class JwtVerificationException extends Exception {

    protected JwtVerificationException(String message) {
        super(message);
    }

    protected JwtVerificationException(String message, Throwable cause) {
        super(message, cause);
    }

    protected JwtVerificationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy