1    package com.instantbank.servicing.control;
2    
3    import java.io.Serializable;
4    
5    /**
6     *  This exception is the base class for all the event exceptions.
7     *
8     * @author Instant-bank (Consuelo Franky)
9     * @created September 2002
10    */
11   public class ServicingEventException extends Exception
12       implements Serializable {
13   
14     /**
15      *  Constructor for the ServicingEventException object
16      */
17     public ServicingEventException() { }
18   
19   
20     /**
21      *  Constructor for the ServicingEventException object
22      *
23      * @param str message of exception
24      */
25     public ServicingEventException(String str) {
26       super(str);
27     }
28   }
29   
30