- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.swing.tree.ExpandVetoException
-
- All Implemented Interfaces:
-
Serializable
public class ExpandVetoException extends 异常
用于阻止扩展/崩溃的异常发生。 有关更多信息和示例,请参阅Java教程中的 How to Write a Tree-Will-Expand Listener 。- 另请参见:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field 描述 protected TreeExpansionEvent
event
创建异常的事件。
-
构造方法摘要
构造方法 Constructor 描述 ExpandVetoException(TreeExpansionEvent event)
构造一个没有消息的ExpandVetoException对象。ExpandVetoException(TreeExpansionEvent event, String message)
构造具有指定消息的ExpandVetoException对象。
-
方法摘要
-
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
-
-
-
-
字段详细信息
-
event
protected TreeExpansionEvent event
创建异常的事件。
-
-
构造方法详细信息
-
ExpandVetoException
public ExpandVetoException(TreeExpansionEvent event)
构造一个没有消息的ExpandVetoException对象。- 参数
-
event
- 一个TreeExpansionEvent对象
-
ExpandVetoException
public ExpandVetoException(TreeExpansionEvent event, String message)
构造具有指定消息的ExpandVetoException对象。- 参数
-
event
- 一个TreeExpansionEvent对象 -
message
- 一个包含消息的字符串
-
-