FileDocCategorySizeDatePackage
InterruptedException.javaAPI DocJ2ME CLDC 1.1979Wed Feb 05 15:56:00 GMT 2003java.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.
author
Frank Yellin
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