1    package com.instantbank.common.utilcomponents;
2    
3    
4    /**
5     *  exception class for DAO services associated with EJBs
6     *
7     * @author Instant-bank (Consuelo Franky)
8     * @created October 2002
9     */
10   public class DAOException extends Exception {
11   
12     /**
13      *  constructor
14      *
15      * @param str message of exception
16      */
17     public DAOException(String str) {
18       super(str);
19     }
20   
21   
22     /**
23      *  constructor
24      */
25     public DAOException() {
26       super();
27     }
28   }
29   
30