View Javadoc
1   package ejava.examples.daoex;
2   
3   /**
4    * This is the base exception for example DAOs.
5    *
6    * @author jcstaff
7    */
8   public class DAOException extends RuntimeException {
9       private static final long serialVersionUID = 1L;
10      public DAOException() {}
11      public DAOException(String message) { super(message); }
12      public DAOException(String message, Throwable rootCause) {
13          super(message, rootCause);
14      }
15      public DAOException(Throwable rootCause) {
16          super(rootCause);
17      }
18  }