Project

General

Profile

1
package eu.dnetlib.datasource.publisher;
2

    
3
public class NotFoundException extends ApiException {
4
	private int code;
5
	public NotFoundException (int code, String msg) {
6
		super(code, msg);
7
		this.code = code;
8
	}
9
}
(4-4/4)