FileDocCategorySizeDatePackage
IllegalThreadStateException.javaAPI DocJ2ME CLDC 1.1963Wed Feb 05 15:56:00 GMT 2003java.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.
author
unascribed
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