1 package ejava.examples.ejbsessionbank.dao;
2
3 public class DAOException extends RuntimeException {
4 private static final long serialVersionUID = 1L;
5 public DAOException() {}
6 public DAOException(String msg) { super(msg); }
7 public DAOException(Throwable ex) { super(ex); }
8 public DAOException(String msg, Throwable ex) { super(msg, ex); }
9 }