On Tue, Jan 08, 2002 at 01:11:25PM -0800, Ian Clarke wrote:
> So this really does seem weird, I am getting a divide by zero exception
> on line 326 of Main.java, yet lines 325 and 326 don't have any divide
> that I can see:
> 
>                 if (fsini.delayedThrow != null)
>                     throw fsini.delayedThrow.fillInStackTrace();
> 
> And people wonder why I don't code these days...

Yet another JVM fault.  What is your setup?

You can try replacing it with this:

                 if (fsini.delayedThrow != null)
                     throw fsini.delayedThrow;

The fillInStackTrace() method has never worked as documented for me
anyway.

-- 

:: tavin cole (tcole at espnow.com) ::


_______________________________________________
Devl mailing list
Devl at freenetproject.org
http://lists.freenetproject.org/mailman/listinfo/devl

Reply via email to