summaryrefslogtreecommitdiffstats
path: root/server/src/com
diff options
context:
space:
mode:
authorJohannes Dahlström <johannesd@vaadin.com>2012-11-22 16:02:32 +0200
committerJohannes Dahlström <johannesd@vaadin.com>2012-11-22 16:20:17 +0200
commit1f2691c2fb14d1558319968e9823bc7f1c52581c (patch)
tree5e60348c63d3257ade37058d5277dd9e368e4d73 /server/src/com
parent45fb000147cda84221c70c8f9da1a9d316d3c54f (diff)
downloadvaadin-framework-1f2691c2fb14d1558319968e9823bc7f1c52581c.tar.gz
vaadin-framework-1f2691c2fb14d1558319968e9823bc7f1c52581c.zip
Change a few "root" occurrences to "UI" in error messages, javadoc
Change-Id: I3140b91262ca179bed48e2081c6093a21fc834a1
Diffstat (limited to 'server/src/com')
-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);
}
}