1    package com.instantbank.lettertemplate.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 August 2002
10    */
11   public class LetterTemplateEventException extends Exception
12       implements Serializable {
13   
14     /**
15      *  Constructor for the LetterTemplateEventException object
16      */
17     public LetterTemplateEventException() { }
18   
19   
20     /**
21      *  Constructor for the LetterTemplateEventException object
22      *
23      * @param str message of exception
24      */
25     public LetterTemplateEventException(String str) {
26       super(str);
27     }
28   }
29   
30