package eu.dnetlib.exceptions;

public class DnetGenericRuntimeException extends RuntimeException {

	/**
	 *
	 */
	private static final long serialVersionUID = 5690147107004649303L;

	public DnetGenericRuntimeException() {
		super();
	}

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

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

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

}
