You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ca...@apache.org on 2005/08/10 22:58:58 UTC

svn commit: r231324 - /xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMWriterImpl.cpp

Author: cargilld
Date: Wed Aug 10 13:58:56 2005
New Revision: 231324

URL: http://svn.apache.org/viewcvs?rev=231324&view=rev
Log:
Remove references to nonexist DOMSystemException.  Jira 1400.

Modified:
    xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMWriterImpl.cpp

Modified: xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMWriterImpl.cpp
URL: http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMWriterImpl.cpp?rev=231324&r1=231323&r2=231324&view=diff
==============================================================================
--- xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMWriterImpl.cpp (original)
+++ xerces/c/branches/xerces-2.7/src/xercesc/dom/impl/DOMWriterImpl.cpp Wed Aug 10 13:58:56 2005
@@ -479,17 +479,8 @@
     {
         throw;
     }
-    //
-    // DOMSystemException
-    // This exception will be raised in response to any sort of IO or system
-    // error that occurs while writing to the destination. It may wrap an
-    // underlying system exception.
-    //
-    //catch (RuntimeException const &)
     catch (...)
-    {
-        // REVISIT generate a DOMSystemException wrapping the underlying
-        //         exception.
+    {        
         destination->flush();
         throw;
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org