⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 commandexception.java

📁 用command模式写的一个简单的java 程序
💻 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 + -