Author: jkuhnert
Date: Fri Jun 22 09:08:27 2007
New Revision: 549861
URL: http://svn.apache.org/viewvc?view=rev&rev=549861
Log:
Oops.. Previous version had sort of broken exception reporting.
Modified:
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/pageload/PageSource.java
Modified:
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/pageload/PageSource.java
URL:
http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/pageload/PageSource.java?view=diff&rev=549861&r1=549860&r2=549861
==============================================================================
---
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/pageload/PageSource.java
(original)
+++
tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/pageload/PageSource.java
Fri Jun 22 09:08:27 2007
@@ -178,7 +178,7 @@
} catch (Exception ex)
{
- throw new
ApplicationRuntimeException(PageloadMessages.errorPagePoolGet(key));
+ throw new
ApplicationRuntimeException(PageloadMessages.errorPagePoolGet(key), ex);
}
@@ -212,7 +212,7 @@
} catch (Exception ex)
{
- throw new
ApplicationRuntimeException(PageloadMessages.errorPagePoolGet(key));
+ throw new
ApplicationRuntimeException(PageloadMessages.errorPagePoolGet(key), ex);
}
}