- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- java.awt.IllegalComponentStateException
-
- 实现的所有接口
-
Serializable
public class IllegalComponentStateException extends IllegalStateException
表示AWT组件未处于所请求操作的适当状态。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 IllegalComponentStateException()
构造一个没有详细消息的IllegalComponentStateException。IllegalComponentStateException(String s)
使用指定的详细消息构造IllegalComponentStateException。
-
方法摘要
-
-
-
构造方法详细信息
-
IllegalComponentStateException
public IllegalComponentStateException()
构造一个没有详细消息的IllegalComponentStateException。 详细消息是描述此特定异常的String。
-
IllegalComponentStateException
public IllegalComponentStateException(String s)
使用指定的详细消息构造IllegalComponentStateException。 详细消息是描述此特定异常的String。- 参数
-
s
- 包含详细消息的字符串
-
-