Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A comment (by user soc) on an answer to a question about tail call optimisation mentioned that Java 7 has a new feature called "suppressed exceptions", because of "the addition of ARM" (support for ARM CPUs?).

What is a "suppressed exception" in this context? In other contexts a "suppressed exception" would be an exception that was caught and then ignored (almost always evil); this is clearly something different.

share|improve this question
I see no mention of it in the "Java Programming Language Enhancements" description download.oracle.com/javase/7/docs/technotes/guides/language/… – Raedwald Oct 21 '11 at 12:36
5  
ARM means Automatic Resource Management, e.g. infoq.com/news/2010/08/arm-blocks – daniel kullmann Oct 21 '11 at 12:47

4 Answers

up vote 12 down vote accepted

I believe the commenter is referring to is an exception which is semi-ignored when it's thrown within the implicit finally block of a try-with-resources block, in the context of an existing exception being thrown from the try block:

An exception can be thrown from the block of code associated with the try-with-resources statement. In the example writeToFileZipFileContents, an exception can be thrown from the try block, and up to two exceptions can be thrown from the try-with-resources statement when it tries to close the ZipFile and BufferedWriter objects. If an exception is thrown from the try block and one or more exceptions are thrown from the try-with-resources statement, then those exceptions thrown from the try-with-resources statement are suppressed, and the exception thrown by the block is the one that is thrown by the writeToFileZipFileContents method. You can retrieve these suppressed exceptions by calling the Throwable.getSuppressed method from the exception thrown by the try block.

(That's quoting a section called "Suppressed Exceptions" from the linked page.)

share|improve this answer
Relevant API call: download.oracle.com/javase/7/docs/api/java/lang/… – Raedwald Oct 21 '11 at 12:48
@Raedwald: Mostly, yes, I think so. – Jon Skeet Oct 21 '11 at 12:50
2  
@JonSkeet @Raedwald : I believe this answer fails to consider that suppressed exceptions existed before Java 7 (I'm not talking about ignored exceptions): if a finally block throws an exception when the try block threw an exception as well, the original exception from the try block is lost or "suppressed" (see http://accu.org/index.php/journals/236 for more info). Java 7 just added a convenient method to store the exception from the finally block because the finally is implicitly generated by try-with-resources. – JBert Nov 22 '11 at 10:36

To clarify the quote in Jon's answer, only one exception can be thrown by a method (per execution) but it is possible in the case of a try-with-resources for multiple exceptions to be thrown (one might be thrown in the block and another might be thrown from the implicit finally provided by the try-with-resources). The compiler has to determine which of these to "really" throw. It chooses to throw the exception raised in the explicit code (the code in the try block) rather than the one thrown by the implicit code (the finally block). Therefore the exception(s) thrown in the implicit block are suppressed (ignored). The only occurs in the case of multiple exceptions.

share|improve this answer
So, suppressed exceptions are a consequence of the new feature that means we no longer need to write cumbersome try...finally clauses when opening and close()ing files: stackoverflow.com/questions/3305405/… – Raedwald Oct 21 '11 at 12:54
A very good answer and explanation – Jam Jul 22 '12 at 19:02

Suppressed exceptions are additional exceptions that occur within a try-with-resources statement (introduced in Java 7) when AutoCloseable resources are closed. Because multiple exceptions may occur while closing AutoCloseable resources, additional exceptions are attached to a primary exception as suppressed exceptions.

Looking at the bytecode of a piece of try-with-resources sample code, standard JVM exception handlers are used to accommodate the try-with-resources semantics.

share|improve this answer

I think this has to do with the "chained exception facility". It will affect how an exception is handled by this facility as the stack trace evolves. Over time exceptions that are part of a group of chained exception can be suppressed. Look at the Throwable documentation for more details.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.