package eu.dnetlib.functionality.alert.alerter;

/**
 * This exception is thrown by an alerter if any errors occur.
 * @author thanos@di.uoa.gr]
 * @see Alerter
 *
 */
public class AlerterException extends Exception {
	private static final long serialVersionUID = 1L;

	/**
	 * Construct a new alerter exception with the specified message and cause.
	 * @param message the message
	 * @param cause the cause
	 */
	public AlerterException(final String message, final Throwable cause) {
		super(message, cause);
	}
	
	/**
	 * Construct a new alerter exception with the specified message.
	 * @param message the message
	 */
	public AlerterException(final String message) {
		super(message);
	}
}
