package eu.dnetlib.exceptions;

public class DnetGenericException extends Exception {

	private static final long serialVersionUID = 1090811973592026796L;

	public DnetGenericException() {
		super();
	}

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

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

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

}
