commandexception.java

来自「webwork in action 下载。」· Java 代码 · 共 25 行

JAVA
25
字号
package org.hibernate.auction.command;/** * A checked exception thrown by command execute methods, wrapping the root cause. * * @author Christian Bauer <christian@hibernate.org> */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 + -
显示快捷键?