datanotfoundexception.java

来自「java 编写的sqlserver快速分页通用类」· Java 代码 · 共 52 行

JAVA
52
字号

/**
 * <ol>
 * 
 * @author 袁 军 <br>
 *         Time: 2006-10-30 17:00:26 <br>
 *         Company: 湖北工业大学计算机学院 <br>
 *         Email: yuan_junl@163.com
 * @version 1.0
 *          </ol>
 */
public class DataNotFoundException extends Exception{

	/**
	 * serialVersionUID
	 */
	private static final long serialVersionUID = 66185546444672300L;

    /**
     * Constructor
	 * @param string	String
	 * @param e	 Exception
     */
    public DataNotFoundException(String string, Exception e) {
    	super(string,e);
    }

    /**
     * Constructor
     * @param	string
     */
    public DataNotFoundException(String string) {
    	super(string);
    }

    /**
     * Constructor
     * @param	string
     */
    public DataNotFoundException(Exception e) {
    	super(e);
    }

    /**
     * Constructor
     */
    public DataNotFoundException() {
    	super();
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?