?? forumnewsnotfoundexception.java
字號:
package net.acai.forum;
/**
* Title: 清清網絡
* Description:
* Copyright: Copyright (c) 2002
* Company: www.SuperSpace.com
* @author: SuperSpace
* @version 1.0
*/
import java.io.PrintStream;
import java.io.PrintWriter;
public class ForumNewsNotFoundException extends Exception
{
private Throwable testThrowable=null;
public ForumNewsNotFoundException()
{
super();
}
public ForumNewsNotFoundException(String msg)
{
super(msg);
}
public ForumNewsNotFoundException(Throwable testThrowable)
{
this.testThrowable=testThrowable;
}
public ForumNewsNotFoundException(String msg ,Throwable testThrowable){
super(msg);
this.testThrowable=testThrowable;
}
public void printStackTrace(){
super.printStackTrace();
if(testThrowable!=null){
testThrowable.printStackTrace();
}
}
public void printStackTrace(PrintStream ps){
super.printStackTrace(ps);
if(testThrowable!=null){
testThrowable.printStackTrace(ps);
}
}
public void printStackTrace(PrintWriter pw){
super.printStackTrace(pw);
if(testThrowable!=null){
testThrowable.printStackTrace(pw);
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -