checkstyle and checkdoc are now ok.
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / notification / NotificationException.java
index 63989d56fc9f86ab2b8118af2905eb8b33d240a8..bd80ba23b79196869685e5787708eed500e10a3d 100644 (file)
@@ -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);
     }
 }