FileDocCategorySizeDatePackage
IllegalThreadStateException.javaAPI DocphoneME MR2 API (J2ME)1854Wed May 02 17:59:54 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
1.17, 12/04/99 (CLDC 1.0, Spring 2000)
since
JDK1.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