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

info.setmy.jwt.exceptions.NotParsedException Maven / Gradle / Ivy

package info.setmy.jwt.exceptions;

/**
 *
 * @author Imre Tabur
 */
public class NotParsedException extends UncheckedException {

    public NotParsedException() {
        super();
    }

    public NotParsedException(final String string) {
        super(string);
    }

    public NotParsedException(final String string, final Exception ex) {
        super(string, ex);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy