Author: rwhitcomb
Date: Sat Jun 13 02:10:53 2020
New Revision: 1878782

URL: http://svn.apache.org/viewvc?rev=1878782&view=rev
Log:
Update one error message in BeanAdapter to add the type name.


Modified:
    pivot/trunk/core/src/org/apache/pivot/beans/BeanAdapter.java

Modified: pivot/trunk/core/src/org/apache/pivot/beans/BeanAdapter.java
URL: 
http://svn.apache.org/viewvc/pivot/trunk/core/src/org/apache/pivot/beans/BeanAdapter.java?rev=1878782&r1=1878781&r2=1878782&view=diff
==============================================================================
--- pivot/trunk/core/src/org/apache/pivot/beans/BeanAdapter.java (original)
+++ pivot/trunk/core/src/org/apache/pivot/beans/BeanAdapter.java Sat Jun 13 
02:10:53 2020
@@ -279,7 +279,8 @@ public class BeanAdapter implements Map<
 
             if (field == null) {
                 throw new PropertyNotFoundException("Property \"" + key + "\""
-                    + " does not exist or is read-only.");
+                    + " does not exist or is read-only for type "
+                    + bean.getClass().getName() + ".");
             }
 
             Class<?> fieldType = field.getType();


Reply via email to