- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- java.awt.IllegalComponentStateException
-
- All Implemented Interfaces:
-
Serializable
public class IllegalComponentStateException extends IllegalStateException
表示AWT组件对于请求的操作不在适当的状态。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 IllegalComponentStateException()
构造一个没有详细消息的IllegalComponentStateException。IllegalComponentStateException(String s)
构造具有指定详细消息的IllegalComponentStateException。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
IllegalComponentStateException
public IllegalComponentStateException()
构造一个没有详细消息的IllegalComponentStateException。 详细消息是描述此特定异常的字符串。
-
IllegalComponentStateException
public IllegalComponentStateException(String s)
构造具有指定详细消息的IllegalComponentStateException。 详细消息是描述此特定异常的字符串。- 参数
-
s
- 包含详细消息的字符串
-
-