FileDocCategorySizeDatePackage
InterruptedException.javaAPI DocphoneME MR2 API (J2ME)1859Wed May 02 17:59:56 BST 2007java.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.
version
12/17/01 (CLDC 1.1)
see
java.lang.Object#wait()
see
java.lang.Object#wait(long)
see
java.lang.Object#wait(long, int)
see
java.lang.Thread#sleep(long)
since
JDK1.0, CLDC 1.0

Fields Summary
Constructors Summary
public InterruptedException()
Constructs an InterruptedException with no detail message.

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

param
s the detail message.

        super(s);
    
Methods Summary