package eu.dnetlib.parthenos.publisher;

/**
 * Created by Alessia Bardi on 29/08/2017.
 *
 * @author Alessia Bardi
 */
public class ParthenosPublisherException extends Exception{

	public ParthenosPublisherException() {
	}

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

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

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

	public ParthenosPublisherException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}
}
