hunk ./BirtRunner.java 42 + + // This call will result in the program terminating with exit code 1. + // When run on the command-line with 'java BirtRunner' it just quits with no + // error output...(?) + + // However, when run from Eclipse debugger, I can actually see that a BirtException + // is being raised... hunk ./BirtRunner.java 50 + + // If I wrap the call to run() in a try/except I *can* successfully + // catch the error... but printStackTrace() does not print anything...(?) hunk ./BirtRunner.java 56 - // e.printStackTrace(); + // e.printStackTrace(); // hunk ./BirtRunner.java 58 + + // never gets here