FileDocCategorySizeDatePackage
IllegalThreadStateException.javaAPI DocJava SE 5 API1070Fri Aug 26 14:57:02 BST 2005java.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
1.21, 12/19/03
see
java.lang.Thread#resume()
see
java.lang.Thread#suspend()
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