summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/java-stable-20060304/sca/core/src/main/java/org/apache/tuscany/core/context/CoreRuntimeException.java
blob: a46d35c22cc8774371d7fd17f3e16e1176339fd9 (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.context;

import org.apache.tuscany.common.TuscanyRuntimeException;

/**
 * The root exception for the runtime package. Exceptions occurring in the runtime are generally non-recoverable
 * 
 * @version $Rev$ $Date$
 */
public abstract class CoreRuntimeException extends TuscanyRuntimeException {

    public CoreRuntimeException() {
        super();
    }

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

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

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