cliexception.java

来自「最新版本!fastdb是高效的内存数据库系统」· Java 代码 · 共 17 行

JAVA
17
字号
package jnicli;

/**
 * Exception thrown by Gigabase CLI implementation.
 * It is derived from RuntimeException class so programmer should not delare
 * this exception in throws part.
 */
public class CliException extends RuntimeException { 
    /**
     * Constructor of the exception object.
     * @param msg message describing the reason of the fault
     */
    public CliException(String msg) { 
        super(msg);
    }
}

⌨️ 快捷键说明

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