Project

General

Profile

1
package eu.dnetlib.uoaorcidservice.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 CommunityNotFoundException extends RuntimeException {
8
    public CommunityNotFoundException(String message){
9
            super(message);
10
    }
11
}
12

    
(1-1/5)