You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2006/03/27 10:33:50 UTC

svn commit: r389070 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/hyphenation/PatternParser.java

Author: jeremias
Date: Mon Mar 27 00:33:48 2006
New Revision: 389070

URL: http://svn.apache.org/viewcvs?rev=389070&view=rev
Log:
Restored JDK 1.3 compatibility.

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/hyphenation/PatternParser.java

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/hyphenation/PatternParser.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/org/apache/fop/hyphenation/PatternParser.java?rev=389070&r1=389069&r2=389070&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/hyphenation/PatternParser.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/hyphenation/PatternParser.java Mon Mar 27 00:33:48 2006
@@ -126,7 +126,7 @@
             factory.setNamespaceAware(true);
             return factory.newSAXParser().getXMLReader();
         } catch (Exception e) {
-            throw new RuntimeException("Couldn't create XMLReader", e);
+            throw new RuntimeException("Couldn't create XMLReader: " + e.getMessage());
         }
     }
 



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