?? usernotfoundexception.java
字號(hào):
package net.acai.forum;
/**
* Title: 清清網(wǎng)絡(luò)
* Description:
* Copyright: Copyright (c) 2002
* Company: www.SuperSpace.com
* @author: SuperSpace
* @version 1.0
*/
import java.io.PrintStream;
import java.io.PrintWriter;
public class UserNotFoundException extends Exception
{
private Throwable testThrowable=null;
public UserNotFoundException()
{
super();
}
public UserNotFoundException(String msg)
{
super(msg);
}
public UserNotFoundException(Throwable testThrowable)
{
this.testThrowable=testThrowable;
}
public UserNotFoundException(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);
}
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -