You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by bo...@apache.org on 2006/12/19 05:48:46 UTC

svn commit: r488521 - in /jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit: src/java/org/apache/commons/jelly/tags/xmlunit/AssertDocumentsEqualTag.java xdocs/changes.xml

Author: bodewig
Date: Mon Dec 18 20:48:46 2006
New Revision: 488521

URL: http://svn.apache.org/viewvc?view=rev&rev=488521
Log:
Adapt to XMLUnit's CVS HEAD - ParserConfigurationException will no longer be thrown

Modified:
    jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/src/java/org/apache/commons/jelly/tags/xmlunit/AssertDocumentsEqualTag.java
    jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/xdocs/changes.xml

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/src/java/org/apache/commons/jelly/tags/xmlunit/AssertDocumentsEqualTag.java
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/src/java/org/apache/commons/jelly/tags/xmlunit/AssertDocumentsEqualTag.java?view=diff&rev=488521&r1=488520&r2=488521
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/src/java/org/apache/commons/jelly/tags/xmlunit/AssertDocumentsEqualTag.java (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/src/java/org/apache/commons/jelly/tags/xmlunit/AssertDocumentsEqualTag.java Mon Dec 18 20:48:46 2006
@@ -18,7 +18,6 @@
 package org.apache.commons.jelly.tags.xmlunit;
 
 import java.io.IOException;
-import javax.xml.parsers.ParserConfigurationException;
 
 import org.apache.commons.jelly.JellyTagException;
 import org.apache.commons.jelly.XMLOutput;
@@ -81,13 +80,7 @@
                     expectedDocument.asXML(),
                     actualDocument.asXML());
             }
-            catch (SAXException e) {
-                throw new JellyTagException(e);
-            }
-            catch (IOException e) {
-                throw new JellyTagException(e);
-            }
-            catch (ParserConfigurationException e) {
+            catch (Throwable e) {
                 throw new JellyTagException(e);
             }
 

Modified: jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/xdocs/changes.xml?view=diff&rev=488521&r1=488520&r2=488521
==============================================================================
--- jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/xdocs/changes.xml (original)
+++ jakarta/commons/proper/jelly/trunk/jelly-tags/xmlunit/xdocs/changes.xml Mon Dec 18 20:48:46 2006
@@ -26,6 +26,7 @@
   </properties>
   <body>
     <release version="1.0.1--dev">
+      <action dev="bodewig" type="update">Adapted to API changes in XMLUnit 1.1-dev</action>
       <action dev="bodewig" type="update">Moved to XMLUnit 1.0</action>
     </release>
     <release version="1.0" date="2004-09-12"></release>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org