public static interface

GWT.UncaughtExceptionHandler

com.google.gwt.core.client.GWT.UncaughtExceptionHandler

Class Overview

This interface is used to catch exceptions at the "top level" just before they escape to the browser. This is used in places where the browser calls into user code such as event callbacks, timers, and RPC. In Development Mode, the default handler prints a stack trace to the log window. In Production Mode, the default handler is null and thus exceptions are allowed to escape, which provides an opportunity to use a JavaScript debugger.

Summary

Public Methods
abstract void onUncaughtException(Throwable e)

Public Methods

public abstract void onUncaughtException (Throwable e)