📄 commandexception.java
字号:
/******************************************************************************* Filename :CommandException.java
* Description :CommandException that wraps Exception.
* Any unrecoverable error that a Command encounters should cause * the Command to throw a CommandException, and the shell will * handle it gracefully.*
* Author :xunzy
*
* History :2004-02-16 Created******************************************************************************/public class CommandException extends Exception { Exception e; // root exception CommandException(Exception e, String message) { super(message); this.e = e; } public Exception getRootException() { return e; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -