View Javadoc

1   /*
2    * $Id: DAOException.java,v 1.1 2004/12/15 14:18:09 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
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  }