Author: mrglavas
Date: Mon Jul  6 19:06:10 2009
New Revision: 791567

URL: http://svn.apache.org/viewvc?rev=791567&view=rev
Log:
Minor tweak to the previous commit.

Modified:
    xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java

Modified: xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java
URL: 
http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java?rev=791567&r1=791566&r2=791567&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java 
(original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/XMLEntityManager.java Mon Jul  
6 19:06:10 2009
@@ -1891,7 +1891,7 @@
                 if (e instanceof IOException) {
                     throw (IOException) e;
                 }
-                throw new IOException(pae.getMessage());
+                throw new IOException(e != null ? e.getMessage() : 
pae.getMessage());
             }
         }
         // Try to write to some other kind of URI. Some protocols



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to