StudentDAOException.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

  1. package bmpsample;
  2. public class StudentDAOException extends Exception {
  3.    public StudentDAOException() {
  4.         super();
  5.    }
  6.    public StudentDAOException(String msg) {
  7.       super(msg);
  8.    }
  9. }