⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wrongsizeexception.java

📁 数据仓库展示程序
💻 JAVA
字号:
package javax.jmi.reflect;

/** Exception which arises when a collection contains
 * fewer or more values than is required by the corresponding
 * <CODE>Multiplicity.lower</CODE> and <code>Multiplicity.upper</code>.
 */
public class WrongSizeException extends JmiException {

    /** Creates <CODE>WrongSizeException</CODE> with a detail message.
     * @param elementInError element in error.
     */
    public WrongSizeException(RefObject elementInError) {
        super(elementInError);
    }

    /** Creates <CODE>WrongSizeException</CODE> with a detail message.
     * @param elementInError element in error.
     * @param msg detail message.
     */
    public WrongSizeException(RefObject elementInError, String msg) {
        super(elementInError, msg);
    }
}

⌨️ 快捷键说明

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