dug 02/03/12 13:00:34
Modified: java/samples/stock GetQuote.java
Log:
Make error message go to the screen instead of some mystery log file
that newbies will never find.
Revision Changes Path
1.38 +1 -1 xml-axis/java/samples/stock/GetQuote.java
Index: GetQuote.java
===================================================================
RCS file: /home/cvs/xml-axis/java/samples/stock/GetQuote.java,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- GetQuote.java 8 Feb 2002 22:14:11 -0000 1.37
+++ GetQuote.java 12 Mar 2002 21:00:34 -0000 1.38
@@ -138,7 +138,7 @@
}
catch( Exception e ) {
if ( e instanceof AxisFault ) {
- ((AxisFault)e).dump();
+ System.err.println( ((AxisFault)e).dumpToString() );
} else
e.printStackTrace();
}