incompleteconfigurationexception.java

来自「jxta_src_2.41b jxta 2.41b 最新版源码 from w」· Java 代码 · 共 68 行

JAVA
68
字号
/* * IncompleteConfigurationException.java * * Created on September 13, 2005, 12:11 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package net.jxta.impl.peergroup;import java.util.List;import net.jxta.exception.ConfiguratorException;/** *  A configurator exception which is generated when intervention  */public class IncompleteConfigurationException extends ConfiguratorException {        /**     *  Constucts a {@link IncompleteConfigurationException} with no specified details.     */    public IncompleteConfigurationException() {        super();    }    /**     *  Constructs a {@link IncompleteConfigurationException} with the specified message.     *     * @param  msg  message     */    public IncompleteConfigurationException(String msg) {        super(msg);    }    /**     *  Constructs a {@link IncompleteConfigurationException} with the specified {@link     *  java.lang.Throwable cause}.     *     * @param  ex  cause     */    public IncompleteConfigurationException(Throwable ex) {        super( ex );    }    /**     *  Constructs a {@link IncompleteConfigurationException} with the specified message and {@link     *  java.lang.Throwable cause}.     *     * @param  msg  message     * @param  ex   cause     */    public IncompleteConfigurationException(String msg, Throwable ex) {        super(msg, ex );    }    /**     *  Constructs a {@link IncompleteConfigurationException} with the specified {@link     *  java.util.List} of {@link java.lang.Throwable causes}.     *     * @param  ex  causes     */    public IncompleteConfigurationException(List ex) {        super( ex );    }}

⌨️ 快捷键说明

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