threadnotfoundexception.java

来自「如题ServletJSP.rar 为网络收集的JSP网站源文件」· Java 代码 · 共 19 行

JAVA
19
字号
package org.redsoft.forum.exception;

/**
 * This class denotes that a exception that we could find a thread given
 * the conditions
 *
 * @author Charles Huang
 * @version 1.0
 */

public class ThreadNotFoundException extends Exception {

    public ThreadNotFoundException() {
    }
	public ThreadNotFoundException(String msg) {
		super(msg);
	}

}//EOC

⌨️ 快捷键说明

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