1
2
3
4
5
6
7
8
9 package bexee.dao;
10
11 /***
12 * This class is used to indicate that something went wrong trying to insert,
13 * find, update etc. in a DAO class.
14 *
15 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:09 $
16 * @author Patric Fornasier
17 * @author Pawel Kowalski
18 */
19 public class DAOException extends Exception {
20
21 public DAOException(String message) {
22 super(message);
23 }
24
25 public DAOException(String message, Throwable cause) {
26 super(message, cause);
27 }
28
29 public DAOException(Throwable cause) {
30 super(cause);
31 }
32 }