]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix error messages
authorLeif Åstrand <leif@vaadin.com>
Wed, 12 Sep 2012 12:13:21 +0000 (15:13 +0300)
committerLeif Åstrand <leif@vaadin.com>
Wed, 12 Sep 2012 12:13:50 +0000 (15:13 +0300)
client/src/com/vaadin/client/metadata/TypeDataStore.java

index 16047baadc5ff67e8a38d0e9fe24d448694b0617..27054c5aeb1f3079801b2454253c2ad779835ad1 100644 (file)
@@ -58,7 +58,7 @@ public class TypeDataStore {
     public static Type getReturnType(Method method) throws NoDataException {
         Type type = get().returnTypes.get(method);
         if (type == null) {
-            throw new NoDataException("There is return type for "
+            throw new NoDataException("There is no return type for "
                     + method.getSignature());
         }
         return type;
@@ -67,7 +67,7 @@ public class TypeDataStore {
     public static Invoker getInvoker(Method method) throws NoDataException {
         Invoker invoker = get().invokers.get(method);
         if (invoker == null) {
-            throw new NoDataException("There is invoker for "
+            throw new NoDataException("There is no invoker for "
                     + method.getSignature());
         }
         return invoker;
@@ -77,7 +77,7 @@ public class TypeDataStore {
         Invoker invoker = get().invokers
                 .get(new Method(type, CONSTRUCTOR_NAME));
         if (invoker == null) {
-            throw new NoDataException("There is constructor for "
+            throw new NoDataException("There is no constructor for "
                     + type.getSignature());
         }
         return invoker;
@@ -86,7 +86,7 @@ public class TypeDataStore {
     public static Invoker getGetter(Property property) throws NoDataException {
         Invoker getter = get().getters.get(property);
         if (getter == null) {
-            throw new NoDataException("There is getter for "
+            throw new NoDataException("There is no getter for "
                     + property.getSignature());
         }