X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=crawler%2Fkiss%2Fsrc%2Forg%2Fwamblee%2Fcrawler%2Fkiss%2Fnotification%2FNotificationException.java;h=bd80ba23b79196869685e5787708eed500e10a3d;hb=b06adf8c8248a4d677faba42fa1cfdb790ddfde7;hp=63989d56fc9f86ab2b8118af2905eb8b33d240a8;hpb=d85bc24e068a68a54786fae5dc71573607b3b0cb;p=utils diff --git a/crawler/kiss/src/org/wamblee/crawler/kiss/notification/NotificationException.java b/crawler/kiss/src/org/wamblee/crawler/kiss/notification/NotificationException.java index 63989d56..bd80ba23 100644 --- a/crawler/kiss/src/org/wamblee/crawler/kiss/notification/NotificationException.java +++ b/crawler/kiss/src/org/wamblee/crawler/kiss/notification/NotificationException.java @@ -5,26 +5,31 @@ package org.wamblee.crawler.kiss.notification; /** - * Notification exception thrown in case of problems sending - * a notification to a user. - * + * Notification exception thrown in case of problems sending a notification to a + * user. + * */ public class NotificationException extends Exception { /** - * Constructs the notification. - * @param aMsg Message. + * Constructs the notification. + * + * @param aMsg + * Message. */ - public NotificationException(String aMsg) { + public NotificationException(String aMsg) { super(aMsg); } - + /** - * Constructs the notification. - * @param aMsg Message. - * @param aCause Cause. + * Constructs the notification. + * + * @param aMsg + * Message. + * @param aCause + * Cause. */ - public NotificationException(String aMsg, Throwable aCause) { + public NotificationException(String aMsg, Throwable aCause) { super(aMsg, aCause); } }