FileDocCategorySizeDatePackage
IllegalThreadStateException.javaAPI DocphoneME MR2 API (J2ME)1845Wed May 02 17:59:56 BST 2007java.lang

IllegalThreadStateException

public class IllegalThreadStateException extends IllegalArgumentException
Thrown to indicate that a thread is not in an appropriate state for the requested operation. See, for example, the suspend and resume methods in class Thread.
version
12/17/01 (CLDC 1.1)
since
JDK1.0, CLDC 1.0

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

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

param
s the detail message.

        super(s);
    
Methods Summary