Re: Java Exception lost in 2.1.0 works in 2.0.4

2010-11-22 Thread Rob Hennessy
I compiled with detailed style and debugged both versions and it appears to the newer version is not handling one of my finally blocks correctly. In 2.1.0 the if statement in the finally block is not generated, but it is there in the 2.0.4. Should I open an issue for this? Thanks, -Rob Here's

Re: Java Exception lost in 2.1.0 works in 2.0.4

2010-11-19 Thread ep
what about debugging? you can compile with no obfuscation (detailed level would be best) and use browser's debugger to get the place where the error arises, i.e. remove the throwable catch, compile detailed, enable debugger in IE (or install firebug in FF) and let the error appear. when clicking on

Java Exception lost in 2.1.0 works in 2.0.4

2010-11-18 Thread Rob Hennessy
Hi All, I have a web app where I exposed a class's static method using JSNI, as in the JSNI example. I execute the method from the native event handler. Within the method, I try and catch, and return any exception's message as the method's return value. The method works properly in 2.0.4, but in