Public (emmanuelp@google.com):
Fix exception exception reporting.

Now consistent with all other usages of UncaughtExceptionHandler:
com/google/gwt/core/client/impl/Impl.java:214
com/google/gwt/core/client/impl/AsyncFragmentLoader.java:578
com/google/gwt/storage/client/StorageImpl.java:59
com/google/gwt/user/client/impl/AsyncProxyBase.java:110

Review at http://gwt-code-reviews.appspot.com/1529806


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@10580 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/core/client/impl/SchedulerImpl.java b/user/src/com/google/gwt/core/client/impl/SchedulerImpl.java
index 845bcb0..fd76da9 100644
--- a/user/src/com/google/gwt/core/client/impl/SchedulerImpl.java
+++ b/user/src/com/google/gwt/core/client/impl/SchedulerImpl.java
@@ -227,7 +227,7 @@
         } else {
           t.executeScheduled();
         }
-      } catch (RuntimeException e) {
+      } catch (Throwable e) {
         if (GWT.getUncaughtExceptionHandler() != null) {
           GWT.getUncaughtExceptionHandler().onUncaughtException(e);
         }