Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.InterruptedException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----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:
wait, wait, wait, sleep, interrupt, interrupted

Constructor Index

InterruptedException()
Constructs an InterruptedException with no detail message.
InterruptedException(String)
Constructs an InterruptedException with the specified detail message.

Constructors

InterruptedException
 public InterruptedException()
Constructs an InterruptedException with no detail message.

InterruptedException
 public InterruptedException(String s)
Constructs an InterruptedException with the specified detail message.

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)