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

com.atlassian.asap.core.exception.JwtParseException Maven / Gradle / Ivy

package com.atlassian.asap.core.exception;

import com.atlassian.asap.api.exception.InvalidTokenException;

/**
 * Indicates that the JWT was not well-formed.
 */
public class JwtParseException extends InvalidTokenException
{
    public JwtParseException(String message, Throwable cause)
    {
        super(message, cause);
    }

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

    public JwtParseException(String reason)
    {
        super(reason);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy