package eu.dnetlib.api.enabling;

import eu.dnetlib.api.DriverServiceException;

public class ISLookUpServiceException extends DriverServiceException {
	private static final long serialVersionUID = 2971319868850757633L;

	public ISLookUpServiceException() {
		super();
	}

	public ISLookUpServiceException(String message, Throwable cause) {
		super(message, cause);
	}
	
	public ISLookUpServiceException(String message) {
		super(message);
	}

	public ISLookUpServiceException(Throwable cause) {
		super(cause);
	}

}
