package eu.dnetlib.contract.runner;

/**
 * ContractTestRunner exception.
 * @author mhorst
 *
 */
public class ContractTestRunnerException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = -7431861231419216718L;

	/**
	 * @param message
	 */
	public ContractTestRunnerException(String message) {
		super(message);
	}
	
	/**
	 * @param throwable
	 */
	public ContractTestRunnerException(Throwable throwable) {
		super(throwable);
	}
	
	/**
	 * @param message
	 * @param throwable
	 */
	public ContractTestRunnerException(String message, Throwable throwable) {
		super(message, throwable);
	}
}
