You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/11/03 23:27:28 UTC

svn commit: r330656 - /myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java

Author: mmarinschek
Date: Thu Nov  3 14:27:25 2005
New Revision: 330656

URL: http://svn.apache.org/viewcvs?rev=330656&view=rev
Log:
fixes in collapsible panel bean

Modified:
    myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java

Modified: myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java?rev=330656&r1=330655&r2=330656&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/component/_ComponentAttributesMap.java Thu Nov  3 14:27:25 2005
@@ -242,7 +242,9 @@
         catch (Exception e)
         {
             FacesContext facesContext = FacesContext.getCurrentInstance();
-            throw new FacesException("Could not set property " + propertyDescriptor.getName() + " of component " + _component.getClientId(facesContext), e);
+            throw new FacesException("Could not set property " + propertyDescriptor.getName() +
+                    " of component " + _component.getClientId(facesContext) +" to value : "+value+" with type : "+
+                    (value==null?"null":value.getClass().getName()), e);
         }
     }