blob: f1374fbfb07d5037f6ec716a3aaa83a26f55f057 [file] [log] [blame]
package org.eclipse.openk.contactbasedata.exceptions;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(code = HttpStatus.NOT_FOUND)
public class NotFoundException extends RuntimeException{
public NotFoundException() {
}
public NotFoundException(String message) {
super(message);
}
}