
com.github.saphyra.exceptionhandling.exception.ForbiddenException Maven / Gradle / Ivy
package com.github.saphyra.exceptionhandling.exception;
import org.springframework.http.HttpStatus;
public class ForbiddenException extends RestException {
public ForbiddenException(String logMessage) {
super(HttpStatus.FORBIDDEN, logMessage);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy