Project

General

Profile

1
package eu.dnetlib.uoaadmintoolslibrary.handlers;
2

    
3
import org.springframework.http.HttpStatus;
4
import org.springframework.web.bind.annotation.ResponseStatus;
5

    
6
@ResponseStatus(HttpStatus.FORBIDDEN)
7
public class ForbiddenException extends RuntimeException {
8
    public ForbiddenException(String message){
9
        super(message);
10
    }
11
}
(3-3/5)