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.NOT_ACCEPTABLE)
7
public class InvalidReCaptchaException extends RuntimeException{
8
    public InvalidReCaptchaException(String message){
9
        super(message);
10
    }
11
}
(4-4/5)