63989d56fc9f86ab2b8118af2905eb8b33d240a8
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / notification / NotificationException.java
1 /**
2  * Copyright (c) 2005 UPS_SCS NL
3  *  
4  */
5 package org.wamblee.crawler.kiss.notification;
6
7 /**
8  * Notification exception thrown in case of problems sending 
9  * a notification to a user. 
10  *
11  */
12 public class NotificationException extends Exception {
13
14     /**
15      * Constructs the notification. 
16      * @param aMsg Message. 
17      */
18     public NotificationException(String aMsg) { 
19         super(aMsg);
20     }
21     
22     /**
23      * Constructs the notification. 
24      * @param aMsg Message. 
25      * @param aCause Cause. 
26      */
27     public NotificationException(String aMsg, Throwable aCause) { 
28         super(aMsg, aCause);
29     }
30 }