Author: mriou
Date: Wed Jun 11 07:36:17 2008
New Revision: 666683

URL: http://svn.apache.org/viewvc?rev=666683&view=rev
Log:
Correcting the caught exception.

Modified:
    
ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java

Modified: 
ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java
URL: 
http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java?rev=666683&r1=666682&r2=666683&view=diff
==============================================================================
--- 
ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java
 (original)
+++ 
ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java
 Wed Jun 11 07:36:17 2008
@@ -42,6 +42,7 @@
 import org.apache.ode.utils.DOMUtils;
 import org.apache.ode.utils.xsd.Duration;
 import org.apache.ode.bpel.evar.ExternalVariableModuleException;
+import org.apache.ode.bpel.iapi.BpelEngineException;
 import org.w3c.dom.Element;
 import org.w3c.dom.Node;
 
@@ -162,7 +163,7 @@
             // At this point, not being able to get the request is most 
probably
             // a mex that hasn't properly replied to (process issue).
             msgEl = getBpelRuntimeContext().getMyRequest(mexId);
-        } catch (ExternalVariableModuleException e) {
+        } catch (BpelEngineException e) {
             __log.error("The message exchange seems to be in an unconsistent 
state, you're " +
                 "probably missing a reply on a request/response interaction.");
             _self.parent.failure(e.toString(), null);


Reply via email to