Project

General

Profile

1
package eu.dnetlib.uoaadmintools.handlers;
2

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

    
6
/**
7
 * Created by argirok on 6/3/2018.
8
 */
9
@ResponseStatus(HttpStatus.NO_CONTENT)
10
public class CommunityNotFoundException extends RuntimeException {
11
    public CommunityNotFoundException(String message){
12
            super(message);
13
    }
14
}
15

    
(2-2/6)