You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by ms...@apache.org on 2007/01/04 22:19:32 UTC

svn commit: r492747 - /incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java

Author: mszefler
Date: Thu Jan  4 13:19:32 2007
New Revision: 492747

URL: http://svn.apache.org/viewvc?view=rev&rev=492747
Log:
fixed error message

Modified:
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java?view=diff&rev=492747&r1=492746&r2=492747
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/runtime/PICK.java Thu Jan  4 13:19:32 2007
@@ -185,7 +185,7 @@
                 throw new InvalidProcessException(errmsg);
             }
             if (msgPart == null) {
-                String errmsg = "Message missing part: " + msgPart;
+                String errmsg = "Message missing part: " + pName;
                 __log.fatal(errmsg);
                 throw new InvalidContextException(errmsg);
             }