suppressedException semantics (original) (raw)
Paul Benedict pbenedict at apache.org
Tue Aug 24 06:50:06 PDT 2010
- Previous message: suppressedException semantics
- Next message: suppressedException semantics
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To Dave's example:
try { throw new A(); } finally { throw new B(); }
I think he wants to automatically chain/suppress exceptions when an exception is live on the stack. Here, B would be thrown and the JVM would automatically add the A exception as a suppressed exception.
Paul
- Previous message: suppressedException semantics
- Next message: suppressedException semantics
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]