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

nva.commons.apigateway.exceptions.InvalidAccessRightException Maven / Gradle / Ivy

There is a newer version: 1.41.0
Show newest version
package nva.commons.apigateway.exceptions;

public class InvalidAccessRightException extends RuntimeException {

    public static final String DEFAULT_MESSAGE = "Invalid Access right: ";

    public InvalidAccessRightException(String accessRight) {
        super(DEFAULT_MESSAGE + accessRight);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy