Author: toad
Date: 2007-12-13 23:23:02 +0000 (Thu, 13 Dec 2007)
New Revision: 16515

Modified:
   trunk/freenet/src/freenet/node/FSParseException.java
Log:
Exception(Exception) apparently doesn't initCause()!

Modified: trunk/freenet/src/freenet/node/FSParseException.java
===================================================================
--- trunk/freenet/src/freenet/node/FSParseException.java        2007-12-13 
23:21:52 UTC (rev 16514)
+++ trunk/freenet/src/freenet/node/FSParseException.java        2007-12-13 
23:23:02 UTC (rev 16515)
@@ -11,6 +11,7 @@
        private static final long serialVersionUID = -1;
     public FSParseException(Exception e) {
         super(e);
+       initCause(e);
     }

     public FSParseException(String msg) {


Reply via email to