// Override the default implementation
 public static SystemMessages getSystemMessages() {
   CustomizedSystemMessages messages = new CustomizedSystemMessages();
   messages.setCommunicationErrorCaption("Comm Err");
   messages.setCommunicationErrorMessage("This is really bad.");
   messages.setCommunicationErrorNotificationEnabled(false);
   messages.setCommunicationErrorURL("http://vaadin.com");
   return messages;
 }