bd80ba23b79196869685e5787708eed500e10a3d
[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 a notification to a
9  * user.
10  * 
11  */
12 public class NotificationException extends Exception {
13
14     /**
15      * Constructs the notification.
16      * 
17      * @param aMsg
18      *            Message.
19      */
20     public NotificationException(String aMsg) {
21         super(aMsg);
22     }
23
24     /**
25      * Constructs the notification.
26      * 
27      * @param aMsg
28      *            Message.
29      * @param aCause
30      *            Cause.
31      */
32     public NotificationException(String aMsg, Throwable aCause) {
33         super(aMsg, aCause);
34     }
35 }