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

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

package info.setmy.jwt.exceptions;

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

    public ForbiddenException() {
        super();
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy