Is there a way to print a stack trace to screen in j2me? I have code that looks like the following, which works fine for displaying the message, but can't figure out any way to get ahold of the stack trace.
try {
throw new RuntimeException("This is bad stuff!");
} catch (Exception e ) {
mainForm.append("Exception: " + e.getMessage());
}
Calling e.printStackTrace() sends it somewhere that I can't find...