You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uoa-orcid-service/src/main/java/eu/dnetlib/uoaorcidservice/handlers/ContentNotFoundException.java

12 lines
342 B
Java

package eu.dnetlib.uoaorcidservice.handlers;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ContentNotFoundException extends RuntimeException {
public ContentNotFoundException(String message){
super(message);
}
}