java.lang
Class InterruptedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.InterruptedException

public class InterruptedException
extends Exception

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.

Since:
JDK1.0
See Also:
Object.wait(), ThreadExt.sleep(int), Thread.interrupt(), Thread.interrupted()

Constructor Summary
InterruptedException()
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
getMessage, printStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, getClass, notifyAll, toString, wait
 

Constructor Detail

InterruptedException

public InterruptedException()