cannotcreateschemaexception.java

来自「JGRoups源码」· Java 代码 · 共 40 行

JAVA
40
字号
package  org.jgroups.persistence;/** * @author Mandar Shinde * This exception inherits the Exception class and is used in * cases where the Persistence Storage cannot create schema to * use the API as required. At this point, top level use needs to * decide whether to continue or abort. */public class CannotCreateSchemaException extends Exception{    /**     * @param t     * @param reason implementor-specified runtime reason     */    public CannotCreateSchemaException(Throwable t, String reason)    {	this.t = t;	this.reason = reason;    }    /**     * @return String     */    public String toString()    {	String tmp = "Exception " + t.toString() + " was thrown due to " + reason;	return tmp;    }    /**     * members are made available so that the top level user can dump     * appropriate members on to his stack trace     */    private Throwable t = null;    private String reason = null;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?