/**
 * 
 */
package gr.uoa.di.webui.search;

import eu.dnetlib.domain.EPR;

/**
 * @author stoumpos
 *
 */
public class InvalidatedResultSet extends Exception {
	
	private static final long serialVersionUID = 7056751757658707705L;

	public InvalidatedResultSet(EPR epr) {
		super("EPR is invalidated. -- \n" + epr.getEpr() + "\n --\n");
	}
	
	public InvalidatedResultSet(EPR epr, Throwable cause) {
		super("EPR is invalidated. -- \n" + epr.getEpr() + "\n --\n", cause);
	}
}
