didn't wrap exception

This commit is contained in:
Keith Donald
2008-03-27 10:47:41 +00:00
parent 98045d99a6
commit 8c020270f9

View File

@@ -529,7 +529,7 @@ public class FlowExecutionImpl implements FlowExecution, Externalizable {
return new FlowExecutionException(flowId, stateId, "Exception thrown in state '" + stateId + "' of flow '"
+ flowId + "'", e);
} else {
return new FlowExecutionException(flowId, null, "Exception thrown within inactive flow '" + flowId + "'");
return new FlowExecutionException(flowId, null, "Exception thrown within inactive flow '" + flowId + "'", e);
}
}