dleslie 00/12/15 10:51:09
Modified: java/samples/trax Examples.java
Log:
Fixed error (changed Exception to Throwable).
Revision Changes Path
1.8 +1 -1 xml-xalan/java/samples/trax/Examples.java
Index: Examples.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/samples/trax/Examples.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- Examples.java 2000/12/05 23:12:20 1.7
+++ Examples.java 2000/12/15 18:51:09 1.8
@@ -810,7 +810,7 @@
if( ex instanceof TransformerConfigurationException ) {
System.out.println();
System.out.println("Internal exception: " );
- Exception ex1=((TransformerConfigurationException)ex).getException();
+ Throwable ex1=((TransformerConfigurationException)ex).getException();
ex1.printStackTrace();
if( ex1 instanceof SAXException ) {