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

import org.apache.tuscany.common.TuscanyRuntimeException;

/**
 * Root unchecked exception for the injection package
 * 
 * @version $Rev$ $Date$
 */
public abstract class InjectionRuntimeException extends TuscanyRuntimeException {

    public InjectionRuntimeException() {
        super();
    }

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

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

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

}