You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2008/12/09 00:42:26 UTC

svn commit: r724553 - /geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/AttributesXmlUtil.java

Author: djencks
Date: Mon Dec  8 15:42:25 2008
New Revision: 724553

URL: http://svn.apache.org/viewvc?rev=724553&view=rev
Log:
Make exception more informative

Modified:
    geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/AttributesXmlUtil.java

Modified: geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/AttributesXmlUtil.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/AttributesXmlUtil.java?rev=724553&r1=724552&r2=724553&view=diff
==============================================================================
--- geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/AttributesXmlUtil.java (original)
+++ geronimo/server/trunk/framework/modules/geronimo-system/src/main/java/org/apache/geronimo/system/configuration/AttributesXmlUtil.java Mon Dec  8 15:42:25 2008
@@ -59,7 +59,7 @@
             GBEAN_CONTEXT = JAXBContext.newInstance(GbeanType.class);
             ATTRIBUTE_CONTEXT = JAXBContext.newInstance(AttributeType.class);
         } catch (JAXBException e) {
-            throw new RuntimeException("Could not create jaxb contexts for plugin types");
+            throw new RuntimeException("Could not create jaxb contexts for plugin types", e);
         }
     }