invalidcallexception.java

来自「数据仓库展示程序」· Java 代码 · 共 27 行

JAVA
27
字号
package javax.jmi.reflect;

/** Thrown by reflection methods when client tries to call them incorrectly.
 * (e.g. when <code>refSetValue</code> is called for attribute which is not
 * changeable)
 */
public class InvalidCallException extends JmiException {

    /**
     * Constructs an <code>InvalidCallException</code> without detail message.
     * @param objectInError object in error
     * @param elementInError element in error.
     */
    public InvalidCallException(Object objectInError, RefObject elementInError) {
        super(objectInError, elementInError);
    }

    /**
     * Constructs an <code>InvalidCallException</code> with the specified detail message.
     * @param objectInError object in error
     * @param elementInError element in error.
     * @param msg the detail message.
     */
    public InvalidCallException(Object objectInError, RefObject elementInError, String msg) {
        super(objectInError, elementInError, msg);
    }
}

⌨️ 快捷键说明

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