View Javadoc
1   package ejava.examples.webtier.dao;
2   
3   public class StudentDAOException extends RuntimeException {
4       private static final long serialVersionUID = 1L;
5       public StudentDAOException() {}
6       public StudentDAOException(String message) { super(message); }
7       public StudentDAOException(String message, Throwable th) { 
8           super(message, th); 
9       }
10      public StudentDAOException(Throwable th) { 
11          super(th); 
12      }
13  }