Hi,
I want to know if it is possible to catch a RuntimeException (ang log it) on client side and also throw on client side.
It seem that when I call 'throw new RuntimeException("error")', the exception is never catched and I don't have any error message in console (java console or smart client console).
I've try with Log.setUncaughtExceptionHandler(); or GWT.setUncaughtExceptionHandler(new GWT.UncaughtExceptionHandler());
but I have no results.
Do you have any ideas ?
Thank you
Clément
I want to know if it is possible to catch a RuntimeException (ang log it) on client side and also throw on client side.
It seem that when I call 'throw new RuntimeException("error")', the exception is never catched and I don't have any error message in console (java console or smart client console).
I've try with Log.setUncaughtExceptionHandler(); or GWT.setUncaughtExceptionHandler(new GWT.UncaughtExceptionHandler());
but I have no results.
Do you have any ideas ?
Thank you
Clément
Comment