How to see useful stacktrace of Exception in JDeveloper
I'm using JDeveloper 9.0.2.
If I set a breakpoint in a "catch" clause, which sends the exception object on to another function (to log it), I can view the exception object in the "Data" window of JDeveloper. What's frustrating, however, is that I can't get the "backtrace" to display in a form that's useful for me. I can see the "detailMessage", but the backtrace appears to just show as an array of integers. I need to be able to determine what function and line the exception occurred at.
If I change my code to call "printStackTrace()" on the exception, then I can obviously see that information, but I don't want to add "printStackTrace" calls if I don't need to.