summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/java-stable-20060304/sca/core/src/main/java/org/apache/tuscany/core/injection/FactoryInitException.java
blob: e9573d4a4ecdf44605d0da374a236d07f702aafd (plain)
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
package org.apache.tuscany.core.injection;

/**
 * Denotes an exception initializing an object factory
 * 
 * @version $Rev$ $Date$
 */
public class FactoryInitException extends InjectionRuntimeException {

    public FactoryInitException(String message, Throwable cause) {
        super(message, cause);
    }

    public FactoryInitException(String message) {
        super(message);
    }

    public FactoryInitException(Throwable cause) {
        super(cause);
    }

    public FactoryInitException() {
        super();
    }

}