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

io.vanillabp.cockpit.commons.exceptions.BcUnauthorizedException Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
package io.vanillabp.cockpit.commons.exceptions;

public class BcUnauthorizedException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public BcUnauthorizedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    public BcUnauthorizedException(String message, Throwable cause) {
        super(message, cause);
    }

    public BcUnauthorizedException(String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy