is new.
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.InterruptedException
public class InterruptedException
Thrown when a thread is waiting, sleeping, or otherwise occupied, and the thread is interrupted, either before or during the activity. Occasionally a method may wish to test whether the current thread has been interrupted, and if so, to immediately throw this exception. The following code can be used to achieve this effect:
if (Thread.interrupted()) // Clears interrupted status! throw new InterruptedException();
| Constructor Summary | |
|---|---|
|
InterruptedException
() Constructs an InterruptedException with no detail message. |
|
|
InterruptedException
(
String
s) Constructs an InterruptedException with the specified detail message. |
|
| Method Summary |
|---|
| Methods inherited from class java.lang. Throwable |
|---|
| fillInStackTrace , getCause , getLocalizedMessage , getMessage , getStackTrace , initCause , printStackTrace , printStackTrace , printStackTrace , setStackTrace , toString |
| Methods inherited from class java.lang. Object |
|---|
| clone , equals , finalize , getClass , hashCode , notify , notifyAll , wait , wait , wait |
| Constructor Detail |
|---|
public InterruptedException()
public InterruptedException(String s)