commandexception.java
来自「用command模式写的一个简单的java 程序」· Java 代码 · 共 25 行
JAVA
25 行
/******************************************************************************* 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 + =
减小字号Ctrl + -
显示快捷键?