diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-22 14:24:41 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-22 14:24:41 +0000 |
commit | f3ea43e76a9f28e846c9d9ba5e07fe000329dba1 (patch) | |
tree | 0d463f6473b4185be7e34f7f2441be7d1131ccc3 /server/src | |
parent | e33302b9676ae62ea0bdc53ff6c6e3f4aea01522 (diff) | |
parent | 1f2691c2fb14d1558319968e9823bc7f1c52581c (diff) | |
download | vaadin-framework-f3ea43e76a9f28e846c9d9ba5e07fe000329dba1.tar.gz vaadin-framework-f3ea43e76a9f28e846c9d9ba5e07fe000329dba1.zip |
Merge "Change a few "root" occurrences to "UI" in error messages, javadoc"
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/com/vaadin/server/UIProvider.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/server/UIProvider.java b/server/src/com/vaadin/server/UIProvider.java index e9ec25c326..0f5396372b 100644 --- a/server/src/com/vaadin/server/UIProvider.java +++ b/server/src/com/vaadin/server/UIProvider.java @@ -32,9 +32,9 @@ public abstract class UIProvider implements Serializable { try { return event.getUIClass().newInstance(); } catch (InstantiationException e) { - throw new RuntimeException("Could not instantiate root class", e); + throw new RuntimeException("Could not instantiate UI class", e); } catch (IllegalAccessException e) { - throw new RuntimeException("Could not access root class", e); + throw new RuntimeException("Could not access UI class", e); } } |