DAOException.java

  1. package ejava.examples.txhotel.dao;

  2. @SuppressWarnings("serial")
  3. public class DAOException extends RuntimeException {
  4.     public DAOException(String msg) { super(msg); }
  5.     public DAOException(Throwable ex) { super(ex); }
  6.     public DAOException(String msg, Throwable ex) { super(msg, ex); }
  7. }