(no commit message)
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / NotificationException.java
index 1845c24a6691b9ba97693b3f6ac8e5aee542138f..cce6b0f24aeb06b1be35aefeab36cc04fe36055b 100644 (file)
@@ -4,12 +4,26 @@
  */
 package org.wamblee.crawler.kiss;
 
+/**
+ * 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);
     }