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