summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2011-01-14 14:57:50 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2011-01-14 14:57:50 +0000
commit8c8b5fa07779714a9773ade960e4d1a4ac4b7f9d (patch)
treec95779fdb4c24634d35b974e6a81fec097cbf781 /sca-java-2.x/trunk/modules
parent07cc642e106cc93a14d06f9297bfd25b51f10f95 (diff)
TUSCANY-3783 - throw system exceptions rather than pushing them into the response path.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1059032 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules')
-rw-r--r--sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java
index 62593ba895..1c0941f26d 100644
--- a/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java
+++ b/sca-java-2.x/trunk/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeInvoker.java
@@ -178,10 +178,7 @@ public class RuntimeInvoker implements Invoker, InvokerAsyncRequest {
// temporary fix to swallow the dummy exception that's
// thrown back to get past the response chain processing.
if (!(ex instanceof AsyncResponseException)){
- // send the exception in through the
- // async response processing path
- msg.setFaultBody(ex);
- invokeAsyncResponse(msg);
+ throw new ServiceRuntimeException(ex);
}
}
} finally {