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

What is the difference between the following ways of handling InterruptedException? What is the best way to do it.

try{...}
catch(InterruptedException e)
{ Thread.currentThread().interrupt(); }

OR

try{...}
catch(InterruptedException e)
{throw new RuntimeException(e);}

EDIT: I'd like to also know in which scenarios are these two used.

share|improve this question

4 Answers

up vote 13 down vote accepted

Simply re-throwing a checked exception in the form of a runtime-exception is a bad habbit. So for the scenarios in which the second approach is desirable, I'd say never.

In the particular case of InterruptedException I would say it depends on the specific situation. Do you care about interrupts?

Examples:

  • Usually, when I perform a Thread.sleep I care little about interrupts, and I just ignore the exception.

  • If I'm doing some blocking read etc, it's a completely different story. I may for instance redo the read if I was interrupted, or I may want to try to close the stream.

A third option is to rethrow the (checked) InterruptedException. In some cases however (when you're for instance implementing an interface method, that is not declared to throw this exception) you should go for your first approach.

Here is a good article on the subject: http://www.ibm.com/developerworks/java/library/j-jtp05236.html

When a blocking method detects interruption and throws InterruptedException, it clears the interrupted status. If you catch InterruptedException but cannot rethrow it, you should preserve evidence that the interruption occurred so that code higher up on the call stack can learn of the interruption and respond to it if it wants to. This task is accomplished by calling interrupt() to "reinterrupt" the current thread, as shown in Listing 3.

share|improve this answer
thanks! – darthvader Oct 20 '10 at 10:03
What is the problem with the second method? – blitzkriegz Oct 20 '10 at 10:18
Deciding if an exception should extend RuntimeException or not is an important and "active" decision. In the second method, you sort of say, "I know better than the guy that wrote the class.". Clearly a checked exception is something that should not go below the radar, here you force it to. – aioobe Oct 20 '10 at 10:28
2  
The article says that you should call interrupt() to preserve the interrupted status. What's the reason behind not doing this on a Thread.sleep()? – oksayt Feb 8 '11 at 7:54
love how your name is an acronym for ArrayIndexOutOfBoundsException. Great answer. – Bro Kevin D. May 6 at 3:09

As it happens i was just reading about this this morning on my way to work in Java Concurrency In Practise by Brian Goetz. Basically he says you should do one of two things

  1. Propagate the InterruptedException - Declare your method to throw the checked InterruptedException so that your caller has to deal with it.

  2. Restore the Interrupt - Sometimes you cannot throw InterruptedException. In these cases you should catch the InterruptedException and restore the interrupt status by calling the interrupt() method on the currentThread so the code higher up the call stack can see that an interrupt was issued.

share|improve this answer

What are you trying to do?

The InterruptedException is thrown when a thread is waiting or sleeping and another thread interrupts it using the interrupt method in class Thread. So if you catch this exception, it means that the thread has been interrupted. Usually there is no point in calling Thread.currentThread().interrupt(); again, unless you want to check the "interrupted" status of the thread from somewhere else.

Regarding your other option of throwing a RuntimeException, it does not seem a very wise thing to do (who will catch this? how will it be handled?) but it is difficult to tell more without additional information.

share|improve this answer
6  
Calling Thread.currentThread().interrupt() sets the interrupted flag (again), which is useful indeed if we want to ensure that the interrupt gets noticed and processed on a higher level. – Péter Török Oct 20 '10 at 9:31
@Péter: I was just updating the answer to mention this. Thanks. – Grodriguez Oct 20 '10 at 9:32

To me the key thing about this is: an InterruptedException is not anything going wrong, it is the thread doing what you told it to do. Therefore rethrowing it wrapped in a RuntimeException makes zero sense.

In many cases it makes sense to rethrow an exception wrapped in a RuntimeException when you say, I don't know what went wrong here and I can't do anything to fix it, I just want it to get out of the current processing flow and hit whatever application-wide exception handler I have so it can log it. That's not the case with an InterruptedException, it's just the thread responding to having interrupt() called on it, it's throwing the InterruptedException in order to help cancel the thread's processing in a timely way. So propagate the InterruptedException, or eat it intelligently (meaning at a place where it will have accomplished what it was meant to do) and reset the interrupt flag.

Here's an answer I wrote describing how interrupts work, with an example. You can see in the example code where it is using the InterruptedException to bail out of a while loop in the Runnable's run method.

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.