commandexception.java
来自「网上拍卖系统」· Java 代码 · 共 28 行
JAVA
28 行
package auction.command;import javax.ejb.ApplicationException;/** * A checked exception thrown by command execute methods, wrapping the root cause. * * @author Christian Bauer */@ApplicationException(rollback = true)public class CommandException extends Exception { public CommandException() {} public CommandException(String message) { super(message); } public CommandException(String message, Throwable cause) { super(message, cause); } public CommandException(Throwable cause) { super(cause); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?