nva.commons.apigateway.exceptions.InvalidAccessRightException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apigateway Show documentation
Show all versions of apigateway Show documentation
A commons library for the NVA project
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);
}
}