}
UncaughtExceptionHandler ueh = GWT.getUncaughtExceptionHandler();
if (ueh != null) {
try {
handler.onPosition(new PositionEvent(position));
} catch (Throwable e) {
ueh.onUncaughtException(e);
}
} else {
handler.onPosition(new PositionEvent(position));
}
}