package eu.dnetlib.utils.sql;

/**
 * This exception is thrown by a connection factory on any error.
 * @author thanos@di.uoa.gr
 *
 */
public class ConnectionFactoryException extends Exception {
	/**
	 * Used for serialization / deserialization.
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * Create a new connection factory exception.
	 * @param message a message describing the error
	 * @param cause the nested exception that originally caused the error
	 */
	public ConnectionFactoryException(String message, Throwable cause) {
		super(message, cause);
	}
}
