package eu.dnetlib.functionality.rating.dao;

/**
 * This exception is thrown by a rating DAO on any error.
 * @author thanos@di.uoa.gr
 *
 */
public class RatingDAOException extends Exception {

	/**
	 * Used for serialization / deserialization.
	 */
	private static final long serialVersionUID = 1L;
	
	/**
	 * Create a new rating DAO exception.
	 * @param message a message describing the error
	 * @param cause the nested exception that originally caused the error
	 */
	public RatingDAOException(String message, Throwable cause) {
		super(message, cause);
	}
}
