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.NO_CONTENT)
7
public class ContentNotFoundException extends RuntimeException {
8
    public ContentNotFoundException(String message){
9
        super(message);
10
    }
11
}
12

    
(2-2/5)