Project

General

Profile

1
package eu.dnetlib.enabling.datasources.common;
2

    
3
public class NotFoundException extends DatasourceManagerException {
4

    
5
	private int code;
6

    
7
	public NotFoundException(int code, String msg) {
8
		super(code, msg);
9
		this.code = code;
10
	}
11
}
(16-16/18)