package de.is24.infrastructure.gridfs.http.exception;
import org.springframework.web.bind.annotation.ResponseStatus;
import static org.springframework.http.HttpStatus.FORBIDDEN;
@ResponseStatus(FORBIDDEN)
public class ForbiddenException extends RuntimeException {
public ForbiddenException(String message, Throwable cause) {
super(message, cause);
}
public ForbiddenException(String message) {
super(message);
}
}