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

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

The newest version!
package io.quarkus.security;

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

    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy