/** * Copyright (c) 2005 UPS_SCS NL * */ package org.wamblee.crawler.kiss.notification; /** * Notification exception thrown in case of problems sending a notification to a * user. * */ public class NotificationException extends Exception { /** * Constructs the notification. * * @param aMsg * Message. */ public NotificationException(String aMsg) { super(aMsg); } /** * Constructs the notification. * * @param aMsg * Message. * @param aCause * Cause. */ public NotificationException(String aMsg, Throwable aCause) { super(aMsg, aCause); } }