*/
public class MainEntryPoint implements EntryPoint, EventListener {
public void onModuleLoad() {
try {
RootPanel.get().add(new InitPanel());
} catch (Exception ex) {
if (Window.confirm("There was an error. Restarting the application."))
onModuleLoad();
}
}