commandexception.java

来自「hibernate in action 源码 caveatemptor-0.9.」· 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 + -
显示快捷键?