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

org.eu.vooo.commons.security.JJWTParseException Maven / Gradle / Ivy

The newest version!
package org.eu.vooo.commons.security;

/**
 * @author [email protected]
 */
public class JJWTParseException extends RuntimeException {

    public JJWTParseException() {
    }

    public JJWTParseException(String message) {
        super(message);
    }

    public JJWTParseException(String message, Throwable cause) {
        super(message, cause);
    }

    public JJWTParseException(Throwable cause) {
        super(cause);
    }

    public JJWTParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy