1 package org.itracker.web.scheduler.tasks;
2
3 /**
4 * @author ricardo
5 *
6 */
7 public class NotificationException extends Exception {
8
9 /**
10 *
11 */
12 private static final long serialVersionUID = 1L;
13
14 public NotificationException() {
15 }
16
17 public NotificationException(String msg) {
18 super(msg);
19 }
20 }