peterreilly 2004/09/08 02:44:36
Modified: src/main/org/apache/tools/ant/launch Tag: ANT_16_BRANCH
Launcher.java
Log:
sync
Revision Changes Path
No revision
No revision
1.5.2.15 +8 -2 ant/src/main/org/apache/tools/ant/launch/Launcher.java
Index: Launcher.java
===================================================================
RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/launch/Launcher.java,v
retrieving revision 1.5.2.14
retrieving revision 1.5.2.15
diff -u -r1.5.2.14 -r1.5.2.15
--- Launcher.java 6 Sep 2004 09:18:50 -0000 1.5.2.14
+++ Launcher.java 8 Sep 2004 09:44:35 -0000 1.5.2.15
@@ -223,9 +223,15 @@
main.startAnt(newArgs, null, null);
} catch (Throwable t) {
if (t instanceof InstantiationException) {
+ t.printStackTrace();
InstantiationException ie = (InstantiationException) t;
- System.err.println("Instantiation Exception - root cause:");
- ie.getCause().printStackTrace();
+ if (ie.getCause() == null) {
+ System.err.println("Instantiation Exception - root
cause: "
+ + ie.getCause());
+ } else {
+ System.err.println("Instantiation Exception - root
cause:");
+ ie.getCause().printStackTrace();
+ }
} else {
t.printStackTrace();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]