View Javadoc
1   package ejava.projects.edmv.dao;
2   
3   /**
4    * This class provides a base exception to report DAO checked exceptions.
5    * 
6    */
7   public class DAOException extends Exception {
8       private static final long serialVersionUID = 1L;
9       public DAOException(String message) { super(message); }
10      public DAOException(String message, Exception ex) { super(message, ex); }
11  }