summaryrefslogtreecommitdiffstats
path: root/java/sca/modules/core/src
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-10-07 11:18:16 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-10-07 11:18:16 +0000
commita7dfaf3d5a49cd44eff24a7558668bfbfe3b96e5 (patch)
tree4fcb08a2699b962417decee3da1e95070c0199e5 /java/sca/modules/core/src
parent06c50953447e38b332fbfab8064115e3b30c7d7e (diff)
Update to get some of the JMS exception tests working by updating to match 1.x r732679 which says 'Ignore the InvocationTargetException as the Tuscany Message body has already be set with the fault'
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@822666 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/modules/core/src')
-rw-r--r--java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java b/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java
index 0b50cbb2d3..43726b85dd 100644
--- a/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java
+++ b/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java
@@ -75,7 +75,7 @@ public class RuntimeWireInvoker implements Invoker{
// shouldn't take it out of the response message in the first place
msg.setBody(response);
} catch (InvocationTargetException e) {
- throw new ServiceRuntimeException(e);
+// throw new ServiceRuntimeException(e);
}
return msg;