I've noticed that in callback handlers, often the exceptions disappear and I'm just left with a browser with the 'waiting' icon.
Is there any general way to get it to show these exceptions? I'm using the GWT catch uncaught expceptions feature, but it is not a very good catch! :)
The approach I've taken to debugging this is to find all possible callbacks and wrap them with try/catch - this seems to work. Pretty annoying though - but you could say it's forcing me to write more robust code.
Is there any general way to get it to show these exceptions? I'm using the GWT catch uncaught expceptions feature, but it is not a very good catch! :)
The approach I've taken to debugging this is to find all possible callbacks and wrap them with try/catch - this seems to work. Pretty annoying though - but you could say it's forcing me to write more robust code.
Comment