View Javadoc
1   package ejava.examples.txhotel.dao;
2   
3   @SuppressWarnings("serial")
4   public class DAOException extends RuntimeException {
5       public DAOException(String msg) { super(msg); }
6       public DAOException(Throwable ex) { super(ex); }
7       public DAOException(String msg, Throwable ex) { super(msg, ex); }
8   }