package eu.dnetlib.datasource.publisher;

public class ApiException extends Exception {

	private int code;

	public ApiException (int code, String msg) {
		super(msg);
		this.code = code;
	}

	public ApiException (int code, String msg, Throwable e) {
		super(msg, e);
		this.code = code;
	}
}
