FileDocCategorySizeDatePackage
IllegalComponentStateException.javaAPI DocJava SE 5 API1128Fri Aug 26 14:56:44 BST 2005java.awt

IllegalComponentStateException

public class IllegalComponentStateException extends IllegalStateException
Signals that an AWT component is not in an appropriate state for the requested operation.
version
1.12, 12/19/03
author
Jonni Kanerva

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public IllegalComponentStateException()
Constructs an IllegalComponentStateException with no detail message. A detail message is a String that describes this particular exception.


                           
      
	super();
    
public IllegalComponentStateException(String s)
Constructs an IllegalComponentStateException with the specified detail message. A detail message is a String that describes this particular exception.

param
s the String that contains a detailed message

	super(s);
    
Methods Summary