diff options
author | Leif Åstrand <leif@vaadin.com> | 2011-12-22 09:42:16 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2011-12-22 10:19:47 +0200 |
commit | 0cc297225631667f76ca16fbfee49f68fca5fbb1 (patch) | |
tree | 2efdc3e860bb30a508d41bd81f68d69188aa5c52 /src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java | |
parent | 23f1fbcfab82d7f0bf60ea0b71e085f9b36397cb (diff) | |
download | vaadin-framework-0cc297225631667f76ca16fbfee49f68fca5fbb1.tar.gz vaadin-framework-0cc297225631667f76ca16fbfee49f68fca5fbb1.zip |
RootRequiresMoreInformation -> RootRequiresMoreInformationException
Diffstat (limited to 'src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java')
-rw-r--r-- | src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java b/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java index 021908ab6e..97d31df827 100644 --- a/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java +++ b/src/com/vaadin/terminal/gwt/server/AbstractCommunicationManager.java @@ -44,7 +44,7 @@ import java.util.logging.Logger; import com.vaadin.Application; import com.vaadin.Application.SystemMessages; -import com.vaadin.RootRequiresMoreInformation; +import com.vaadin.RootRequiresMoreInformationException; import com.vaadin.external.json.JSONException; import com.vaadin.external.json.JSONObject; import com.vaadin.terminal.CombinedRequest; @@ -2007,7 +2007,7 @@ public abstract class AbstractCommunicationManager implements params.put("uidl", initialUIDL); } response.getWriter().write(params.toString()); - } catch (RootRequiresMoreInformation e) { + } catch (RootRequiresMoreInformationException e) { // Requiring more information at this point is not allowed // TODO handle in a better way throw new RuntimeException(e); |