Author: thorsten
Date: Fri Aug 4 07:01:27 2006
New Revision: 428728
URL: http://svn.apache.org/viewvc?rev=428728&view=rev
Log:
Throwing the exception instead of swollowing it. Forgot to add this in the
first place.
Modified:
forrest/trunk/main/java/org/apache/forrest/conf/ForrestConfModule.java
Modified: forrest/trunk/main/java/org/apache/forrest/conf/ForrestConfModule.java
URL:
http://svn.apache.org/viewvc/forrest/trunk/main/java/org/apache/forrest/conf/ForrestConfModule.java?rev=428728&r1=428727&r2=428728&view=diff
==============================================================================
--- forrest/trunk/main/java/org/apache/forrest/conf/ForrestConfModule.java
(original)
+++ forrest/trunk/main/java/org/apache/forrest/conf/ForrestConfModule.java Fri
Aug 4 07:01:27 2006
@@ -177,6 +177,7 @@
}
} catch (Exception e) {
getLogger().error("Opps, something went wrong.",e);
+ throw new Exception("Opps, something went wrong.",e);
}
loadSystemProperties(filteringProperties);