Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 19a12e54bb8b1c5bab9da5b9ca3f72bb1ae68e81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package org.eclipse.ecf.internal.comm;

public class ConnectionInstantiationException extends Exception {

    public ConnectionInstantiationException() {
        super();
    }

    /**
     * @param message
     */
    public ConnectionInstantiationException(String message) {
        super(message);
    }

    /**
     * @param cause
     */
    public ConnectionInstantiationException(Throwable cause) {
        super(cause);
    }

    /**
     * @param message
     * @param cause
     */
    public ConnectionInstantiationException(String message, Throwable cause) {
        super(message, cause);
    }

}

Back to the top