package eu.dnetlib.api.enabling;

import eu.dnetlib.api.DriverServiceException;

public class ISSNServiceException extends DriverServiceException {
	private static final long serialVersionUID = -5921523712725388939L;

	public ISSNServiceException(String mesg) {
		super(mesg);
	}

	public ISSNServiceException(String mesg, Throwable cause) {
		super(mesg, cause);
	}

	public ISSNServiceException(Throwable cause) {
		super(cause);
	}
}
