package eu.dnetlib.exceptions;

public class InformationServiceException extends DnetGenericException {

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

	public InformationServiceException() {
		super();
	}

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

	public InformationServiceException(final String message) {
		super(message);
	}

	public InformationServiceException(final Throwable cause) {
		super(cause);
	}

}
