java.lang.Object | +--java.lang.Throwable | +--java.lang.Exception | +--java.lang.InterruptedException
Thrown when a thread is waiting, sleeping, or otherwise paused for a long time and another thread interrupts it using the
interrupt method in class Thread.
Object.wait(),
Object.wait(long),
Object.wait(long, int),
Thread.sleep(long),
Thread.interrupt(),
Thread.interrupted(), Serialized Form
| Constructor Summary | |
InterruptedException
copy-> new InterruptedException()copy-> <InterruptedException var> = new InterruptedException();
|
|
InterruptedException
copy-> new InterruptedException( )copy-> <InterruptedException var> = new InterruptedException(<String s>);
|
|
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |