import com.google.gwt.user.client.Command;
import com.google.gwt.user.client.Timer;
import com.vaadin.terminal.gwt.client.ui.UnknownComponentConnector;
+import com.vaadin.terminal.gwt.client.ui.VNotification;
public class ApplicationConfiguration implements EntryPoint {
* especially end user. It does not work tells just as much.
*/
VConsole.getImplementation().error(e);
+
+ try {
+ VNotification.createNotification(
+ VNotification.DELAY_FOREVER).show(e.getMessage(),
+ VNotification.CENTERED, "error");
+ } catch (Exception e2) {
+ // Just swallow this exception
+ }
}
});