Author: thorsten
Date: Fri Aug 4 08:42:54 2006
New Revision: 428757
URL: http://svn.apache.org/viewvc?rev=428757&view=rev
Log:
Not catching exception at all and let cocoon handle them.
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=428757&r1=428756&r2=428757&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 08:42:54 2006
@@ -175,15 +175,12 @@
forrestPropertiesStringURI);
}
}
- } catch (Exception e) {
- getLogger().error("Opps, something went wrong.",e);
- throw new Exception("Opps, something went wrong.",e);
- }
-
+ } finally {
loadSystemProperties(filteringProperties);
ForrestConfUtils.aliasSkinProperties(filteringProperties);
if (debugging())
debug("Loaded project properties:" + filteringProperties);
+ }
}
/**