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

When does Java's Thread.sleep throw InterruptedException? Is it safe to ignore it? I am not doing any multithreading. I just want to wait for a few seconds before retrying some operation.

share|improve this question

4 Answers

up vote 9 down vote accepted

You should generally NOT ignore the exception. Take a look at the following paper:

http://www.ibm.com/developerworks/java/library/j-jtp05236.html

share|improve this answer

The Java Specialists newsletter (which I can unreservedly recommend) had an interesting article on this, and how to handle the InterruptedException. It's well worth reading and digesting.

share|improve this answer

A solid and easy way to handle it in single threaded code would be to catch it and retrow it in a RuntimeException, to avoid the need to declare it for every method.

share|improve this answer

The InterruptedException is usually thrown when a sleep is interrupted.

share|improve this answer
4  
That's wrong, as it is not the sleep itself which is interupted, but the Thread running it. Interrupted is a Thread state. It just leads to the sleep method being exited. – ubuntudroid Feb 16 '12 at 9:47

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.