summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-22 14:24:41 +0000
committerVaadin Code Review <review@vaadin.com>2012-11-22 14:24:41 +0000
commitf3ea43e76a9f28e846c9d9ba5e07fe000329dba1 (patch)
tree0d463f6473b4185be7e34f7f2441be7d1131ccc3 /server/src
parente33302b9676ae62ea0bdc53ff6c6e3f4aea01522 (diff)
parent1f2691c2fb14d1558319968e9823bc7f1c52581c (diff)
downloadvaadin-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.java4
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);
}
}