diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-19 13:40:14 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-21 15:18:31 +0200 |
commit | c454797201969a03fa43000d8bb8ccb30ef5b437 (patch) | |
tree | 34f69ce9af70a7112ae69008d6eb8f03c7d961b8 /uitest/src/com/vaadin/tests/appengine/GAESyncTest.java | |
parent | 6ed87c1b6ce280082c2dee21a6f87c1620e0ea79 (diff) | |
download | vaadin-framework-c454797201969a03fa43000d8bb8ccb30ef5b437.tar.gz vaadin-framework-c454797201969a03fa43000d8bb8ccb30ef5b437.zip |
Replaced ComponentErrorHandler with generic ErrorHandler (#10231)
* Replaced AbstractComponent ErrorHandler with ClientConnector level error handler. Now uses the same ErrorHandler as other parts of the framework.
* Made error handling hierarchical so that the error handler of the connector where the error occured or its ancestors is used. Falls back to VaadinSession ErrorHandler.
* Changed ErrorEvent to be a class as all other events in the framework
* Renamed ErrorListener to ErrorHandler and DefaultErrorListener to DefaultErrorHandler for consistency
* Unified error handling in AbstractCommunicationManager
* Unified error handling in VaadinServlet and VaadinPortlet
* Removed superfluous ErrorEvent implementations (#10232)
Change-Id: Ied518e05209fe54685f4bebab0709b1cd5584fd1
Diffstat (limited to 'uitest/src/com/vaadin/tests/appengine/GAESyncTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/appengine/GAESyncTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java b/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java index f5d90bae79..146e85f5f3 100644 --- a/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java +++ b/uitest/src/com/vaadin/tests/appengine/GAESyncTest.java @@ -29,7 +29,7 @@ public class GAESyncTest extends LegacyApplication { } @Override - public void terminalError(com.vaadin.server.ErrorEvent event) { + public void error(com.vaadin.server.ErrorEvent event) { Throwable t = event.getThrowable(); // Was this caused by a GAE timeout? while (t != null) { @@ -41,7 +41,7 @@ public class GAESyncTest extends LegacyApplication { t = t.getCause(); } - super.terminalError(event); + super.error(event); } |