List of usage examples for com.vaadin.server ErrorHandler error
public void error(ErrorEvent event);
From source file:org.semanticsoft.vaaclipse.app.servlet.VaadinOSGiCommunicationManager.java
License:Open Source License
private void handleConnectorRelatedException(ClientConnector connector, Throwable throwable) { ErrorEvent errorEvent = new ConnectorErrorEvent(connector, throwable); ErrorHandler handler = ErrorEvent.findErrorHandler(connector); handler.error(errorEvent); }