I get exception when using Thread.sleep(x) or wait()

I have tried to delay – or put to sleep – my Java program, but an error occurs.

I’m unable to use Thread.sleep(x) or wait(). The same error message appears:

unreported exception java.lang.InterruptedException; must be caught or declared to be thrown.

Is there any step required before using the Thread.sleep() or wait() methods?

13 Answers
13

Leave a Comment