Revision: 2346
          http://vexi.svn.sourceforge.net/vexi/?rev=2346&view=rev
Author:   clrg
Date:     2007-09-27 10:22:58 -0700 (Thu, 27 Sep 2007)

Log Message:
-----------
Nice idea (maintaining stacktrace) but only supported in Java 6 :-(

Modified Paths:
--------------
    trunk/core/org.vexi.core/src/org/vexi/core/Resources.java

Modified: trunk/core/org.vexi.core/src/org/vexi/core/Resources.java
===================================================================
--- trunk/core/org.vexi.core/src/org/vexi/core/Resources.java   2007-09-27 
17:05:10 UTC (rev 2345)
+++ trunk/core/org.vexi.core/src/org/vexi/core/Resources.java   2007-09-27 
17:22:58 UTC (rev 2346)
@@ -412,7 +412,9 @@
                        cache = new File(localFile.getAbsolutePath());
                        if(finishTrap!=null) 
Thread.runInNew(finishTrap.function(), new JS[]{JSU.T});
                }catch(JSExn e){
-                       throw new IOException(e);
+                       // only supported by Java 6
+                       //throw new IOException(e);
+                       throw new IOException(e.getMessage());
                }
        }
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Vexi-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to