Project

General

Profile

1 49659 michele.ar
package eu.dnetlib.enabling.datasources.common;
2 44743 claudio.at
3 49659 michele.ar
public class NotFoundException extends DatasourceManagerException {
4
5 44743 claudio.at
	private int code;
6 49659 michele.ar
7
	public NotFoundException(int code, String msg) {
8 44743 claudio.at
		super(code, msg);
9
		this.code = code;
10
	}
11
}