suppressedException semantics (original) (raw)

Paul Benedict pbenedict at apache.org
Tue Aug 24 06:50:06 PDT 2010


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



More information about the coin-dev mailing list