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/RootRequiresMoreInformationException.java | |
parent | 23f1fbcfab82d7f0bf60ea0b71e085f9b36397cb (diff) | |
download | vaadin-framework-0cc297225631667f76ca16fbfee49f68fca5fbb1.tar.gz vaadin-framework-0cc297225631667f76ca16fbfee49f68fca5fbb1.zip |
RootRequiresMoreInformation -> RootRequiresMoreInformationException
Diffstat (limited to 'src/com/vaadin/RootRequiresMoreInformationException.java')
-rw-r--r-- | src/com/vaadin/RootRequiresMoreInformationException.java | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/com/vaadin/RootRequiresMoreInformationException.java b/src/com/vaadin/RootRequiresMoreInformationException.java new file mode 100644 index 0000000000..ed0fa41437 --- /dev/null +++ b/src/com/vaadin/RootRequiresMoreInformationException.java @@ -0,0 +1,25 @@ +/* +@VaadinApache2LicenseForJavaFiles@ + */ + +package com.vaadin; + +import com.vaadin.terminal.WrappedRequest; +import com.vaadin.terminal.WrappedRequest.BrowserDetails; + +/** + * Exception that is thrown to indicate that creating or initializing the root + * requires information detailed from the web browser ({@link BrowserDetails}) + * to be present. + * + * This exception may not be thrown if that information is already present in + * the current WrappedRequest. + * + * @see Application#getRoot(WrappedRequest) + * @see WrappedRequest#getBrowserDetails() + * + * @since 7.0 + */ +public class RootRequiresMoreInformationException extends Exception { + // Nothing of interest here +} |