java.lang

Class InterruptedException

public class InterruptedException extends Exception

Thrown when a thread interrupts another thread which was previously sleeping, waiting, or paused in some other way. See the interrupt method of class Thread.

See Also: wait Object Object Thread interrupt interrupted

UNKNOWN: updated to 1.4

Constructor Summary
InterruptedException()
Create an exception without a message.
InterruptedException(String s)
Create an exception with a message.

Constructor Detail

InterruptedException

public InterruptedException()
Create an exception without a message.

InterruptedException

public InterruptedException(String s)
Create an exception with a message.

Parameters: s the message