Project

General

Profile

1
package eu.dnetlib.uoamonitorservice.handlers;
2

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

    
6
@ResponseStatus(HttpStatus.NOT_FOUND)
7
public class EntityNotFoundException extends RuntimeException {
8
    public EntityNotFoundException(String message){
9
        super(message);
10
    }
11
}
(2-2/4)