And here is the testcase code ... -- Escape the Java Trap with GNU Classpath! http://www.gnu.org/philosophy/java-trap.html
Join the community at http://planet.classpath.org/
public class BinutilsTest { public static void main(String[] args) { try { System.out.println("throw the exceptio"); throw new Exception(); } catch (Exception e) { System.out.println("printing stack trace:"); e.printStackTrace(); } } }