]> sjero.net Git - linphone/blob - p2pproxy/dependencies-src/jxse-src-2.5/impl/src/net/jxta/impl/peergroup/IncompleteConfigurationException.java
remove mediastreamer2 and add it as a submodule instead.
[linphone] / p2pproxy / dependencies-src / jxse-src-2.5 / impl / src / net / jxta / impl / peergroup / IncompleteConfigurationException.java
1 /*
2  * IncompleteConfigurationException.java
3  *
4  * Created on September 13, 2005, 12:11 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */
9 package net.jxta.impl.peergroup;
10
11 import net.jxta.exception.ConfiguratorException;
12
13 import java.util.List;
14
15 /**
16  * A configurator exception which is generated when intervention
17  */
18 public class IncompleteConfigurationException extends ConfiguratorException {
19
20     /**
21      * Constucts a {@link IncompleteConfigurationException} with no specified details.
22      */
23     public IncompleteConfigurationException() {
24         super();
25     }
26
27     /**
28      * Constructs a {@link IncompleteConfigurationException} with the specified message.
29      *
30      * @param msg message
31      */
32     public IncompleteConfigurationException(String msg) {
33         super(msg);
34     }
35
36     /**
37      * Constructs a {@link IncompleteConfigurationException} with the specified {@link
38      * java.lang.Throwable cause}.
39      *
40      * @param ex cause
41      */
42     public IncompleteConfigurationException(Throwable ex) {
43         super(ex);
44     }
45
46     /**
47      * Constructs a {@link IncompleteConfigurationException} with the specified message and {@link
48      * java.lang.Throwable cause}.
49      *
50      * @param msg message
51      * @param ex  cause
52      */
53     public IncompleteConfigurationException(String msg, Throwable ex) {
54         super(msg, ex);
55     }
56
57     /**
58      * Constructs a {@link IncompleteConfigurationException} with the specified {@link
59      * java.util.List} of {@link java.lang.Throwable causes}.
60      *
61      * @param ex causes
62      */
63     public IncompleteConfigurationException(List ex) {
64         super(ex);
65     }
66 }