java.lang

Class IllegalThreadStateException

public class IllegalThreadStateException extends IllegalArgumentException

Thrown When trying to manipulate a Thread which is in an inappropriate state. Since the documentation suggests that this can happen with Thread.suspend or Thread.resume, but these two methods are deprecated, this exception is likely very rare.

UNKNOWN: updated to 1.4

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

Constructor Detail

IllegalThreadStateException

public IllegalThreadStateException()
Create an exception without a message.

IllegalThreadStateException

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

Parameters: s the message