/**
 * 
 */
package eu.dnetlib.data.collective.manager.ui;

/**
 * @author jochen
 *
 */
public class InstanceNotFoundException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1412586018394049209L;

	public InstanceNotFoundException(Throwable e){
		super(e);
	}
	
	public InstanceNotFoundException(String msg, Throwable e){
		super(msg, e);
	}
	
	public InstanceNotFoundException(String msg){
		super(msg);
	}
	
}
