Author: antelder
Date: Wed Oct 11 07:09:52 2006
New Revision: 462808
URL: http://svn.apache.org/viewvc?view=rev&rev=462808
Log:
Make sure all Exceptions get logged
Modified:
incubator/tuscany/java/sca/runtime/webapp/src/main/java/org/apache/tuscany/runtime/webapp/TuscanyContextListener.java
Modified:
incubator/tuscany/java/sca/runtime/webapp/src/main/java/org/apache/tuscany/runtime/webapp/TuscanyContextListener.java
URL:
http://svn.apache.org/viewvc/incubator/tuscany/java/sca/runtime/webapp/src/main/java/org/apache/tuscany/runtime/webapp/TuscanyContextListener.java?view=diff&rev=462808&r1=462807&r2=462808
==============================================================================
---
incubator/tuscany/java/sca/runtime/webapp/src/main/java/org/apache/tuscany/runtime/webapp/TuscanyContextListener.java
(original)
+++
incubator/tuscany/java/sca/runtime/webapp/src/main/java/org/apache/tuscany/runtime/webapp/TuscanyContextListener.java
Wed Oct 11 07:09:52 2006
@@ -77,6 +77,9 @@
} catch (MalformedURLException e) {
servletContext.log(e.getMessage(), e);
throw new RuntimeException(e);
+ } catch (Exception e) {
+ servletContext.log(e.getMessage(), e);
+ throw new RuntimeException(e);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]