DaoException

来源:互联网 发布:iphone7 itunes mac 编辑:程序博客网 时间:2024/06/05 16:59
package cn.itcast.dao.Impl;public class DaoException extends RuntimeException{    /**     *      */    private static final long serialVersionUID = 1L;    public DaoException() {        // TODO Auto-generated constructor stub    }    public DaoException(String message) {        super(message);        // TODO Auto-generated constructor stub    }    public DaoException(Throwable cause) {        super(cause);        // TODO Auto-generated constructor stub    }    public DaoException(String message, Throwable cause) {        super(message, cause);        // TODO Auto-generated constructor stub    }   }
0 0