package it.inaf.ia2.gms.exception; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; @ResponseStatus(value = HttpStatus.NOT_FOUND) public class NotFoundException extends GmsException { public NotFoundException(String message) { super(message); } }