GWT.setUncaughtExceptionHandler()
- by moorsu
Has anyone successfully use the above statement to catch the exception before it goes to the browser as an alert?.
I did set an exception handler in the first line of my entry point. But it does not catch the exception as expected.
public void onModuleLoad(){
GWT.setUncaughtExceptionHandler(new MyExceptionHandler());
...
....
}