?? sellnotfoundexception.java
字號(hào):
package electric.dbs;import java.io.*;public class SellNotFoundException extends Exception { private Throwable nestedThrowable = null; public SellNotFoundException() { super(); } public SellNotFoundException(String msg) { super(msg); } public SellNotFoundException(Throwable nestedThrowable) { this.nestedThrowable = nestedThrowable; } public SellNotFoundException(String msg, Throwable nestedThrowable) { super(msg); this.nestedThrowable = nestedThrowable; } public void printStackTrace() { super.printStackTrace(); if (nestedThrowable != null) { nestedThrowable.printStackTrace(); } } public void printStackTrace(PrintStream ps) { super.printStackTrace(ps); if (nestedThrowable != null) { nestedThrowable.printStackTrace(ps); } } public void printStackTrace(PrintWriter pw) { super.printStackTrace(pw); if (nestedThrowable != null) { nestedThrowable.printStackTrace(pw); } }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -