Author: djencks
Date: Sun Jan 23 00:31:17 2005
New Revision: 126204

URL: http://svn.apache.org/viewcvs?view=rev&rev=126204
Log:
so, just where did this missing attribute allegedly come from?
Modified:
   
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java

Modified: 
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java
Url: 
http://svn.apache.org/viewcvs/geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java?view=diff&rev=126204&p1=geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java&r1=126203&p2=geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java&r2=126204
==============================================================================
--- 
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java
 (original)
+++ 
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/runtime/GBeanInstance.java
 Sun Jan 23 00:31:17 2005
@@ -633,7 +633,7 @@
     private GBeanAttribute getAttributeByName(String name) throws 
NoSuchAttributeException {
         Integer index = (Integer) attributeIndex.get(name);
         if (index == null) {
-            throw new NoSuchAttributeException("Unknown attribute " + name);
+            throw new NoSuchAttributeException("Unknown attribute " + name + " 
in gbean " + objectName);
         }
         GBeanAttribute attribute = attributes[index.intValue()];
         return attribute;

Reply via email to