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

io.quarkus.security.ForbiddenException Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.quarkus.security;

/**
 * @author Michal Szynkiewicz, [email protected]
 */
public class ForbiddenException extends SecurityException {
    public ForbiddenException() {

    }

    public ForbiddenException(String errorMessage) {
        this(errorMessage, null);
    }

    public ForbiddenException(Throwable cause) {
        this(null, cause);
    }

    public ForbiddenException(String errorMessage, Throwable cause) {
        super(errorMessage, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy