?? m_error.java
字號:
package myException;
//File name: m_Error.java
//author jiaben
//auther jiaben02@software.nju.edu.cn
//Copyright jiaben
import java.lang.Throwable;
public class m_Error extends Throwable
{
//Empty Constructor
public m_Error()
{
super();
}
//A constructor use a str value as its parameter
public m_Error(String str)
{
super(str);
}
//The same as the one below
public m_Error(String message, Throwable cause)
{
super(message, cause);
}
//The same as the one below
public m_Error(Throwable cause)
{
super(cause);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -