package eu.dnetlib.functionality.alert.dao;

/**
 * This exception is thrown by alert DAOs if any errors occur.
 * @author thanos@di.uoa.gr
 * @see AlertDAO
 *
 */
public class AlertDAOException extends Exception {
	private static final long serialVersionUID = 1L;

	/**
	 * Construct a new alert DAO exception.
	 * @param message the message
	 * @param cause the cause
	 */
	public AlertDAOException(final String message, final Throwable cause) {
		super(message, cause);
	}
	
	/**
	 * Construct a new alert DAO exception with cause set to null.
	 * @param message the message
	 */
	public AlertDAOException(final String message) {
		super(message);
	}	
}
