Re: Chained Exceptions and StackTraceElement support

2001-07-13 Thread Tom Tromey
> "Mark" == Mark Wielaard <[EMAIL PROTECTED]> writes: Mark> I was hoping that we could use the java version of Mark> printStackTrace and let the VM only handle the Mark> fillInStackTrace() <-> StackTraceElement side of things. This Mark> might be doable for japhar as far as I can understand t

Chained Exceptions and StackTraceElement support

2001-07-09 Thread Mark Wielaard
Hi, The 1.4 spec finally defines a generic Exception chaining mechanism so you don't have to implement this in an ad hoc way for every project. It also defines a general StackTraceElement that can be used to inspect the call stack of an exception. I have seen people do this by parsing the output