You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2007/03/12 16:51:24 UTC

svn commit: r517265 - /tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/HiveMindExpressionCompiler.java

Author: jkuhnert
Date: Mon Mar 12 08:51:20 2007
New Revision: 517265

URL: http://svn.apache.org/viewvc?view=rev&rev=517265
Log:
Re-enabled full stack dump in expression compiler. (otherwise it hides exceptions coming out of user objects.

Modified:
    tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/HiveMindExpressionCompiler.java

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/HiveMindExpressionCompiler.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/HiveMindExpressionCompiler.java?view=diff&rev=517265&r1=517264&r2=517265
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/HiveMindExpressionCompiler.java (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/services/impl/HiveMindExpressionCompiler.java Mon Mar 12 08:51:20 2007
@@ -257,7 +257,7 @@
             } catch (Throwable t) {
                 throw new ApplicationRuntimeException("Error compiling expression on object " + root
                         + " with expression node " + expression + " getter body: " + getBody 
-                        + " setter body: " + setBody + t.getMessage());
+                        + " setter body: " + setBody, t);
             }
         }
     }