You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by an...@apache.org on 2008/02/01 01:17:13 UTC

svn commit: r617311 - /lenya/trunk/src/modules-core/workflow/java/src/org/apache/lenya/workflow/impl/WorkflowManagerImpl.java

Author: andreas
Date: Thu Jan 31 16:17:10 2008
New Revision: 617311

URL: http://svn.apache.org/viewvc?rev=617311&view=rev
Log:
Don't wrap WorkflowException in another WorkflowException.

Modified:
    lenya/trunk/src/modules-core/workflow/java/src/org/apache/lenya/workflow/impl/WorkflowManagerImpl.java

Modified: lenya/trunk/src/modules-core/workflow/java/src/org/apache/lenya/workflow/impl/WorkflowManagerImpl.java
URL: http://svn.apache.org/viewvc/lenya/trunk/src/modules-core/workflow/java/src/org/apache/lenya/workflow/impl/WorkflowManagerImpl.java?rev=617311&r1=617310&r2=617311&view=diff
==============================================================================
--- lenya/trunk/src/modules-core/workflow/java/src/org/apache/lenya/workflow/impl/WorkflowManagerImpl.java (original)
+++ lenya/trunk/src/modules-core/workflow/java/src/org/apache/lenya/workflow/impl/WorkflowManagerImpl.java Thu Jan 31 16:17:10 2008
@@ -118,6 +118,8 @@
                     this.uri2workflow.put(uri, workflow);
                 }
             }
+        } catch (final WorkflowException e) {
+            throw e;
         } catch (final Exception e) {
             throw new WorkflowException(e);
         }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@lenya.apache.org
For additional commands, e-mail: commits-help@lenya.apache.org