FileDocCategorySizeDatePackage
ExpandVetoException.javaAPI DocJava SE 5 API1307Fri Aug 26 14:58:20 BST 2005javax.swing.tree

ExpandVetoException

public class ExpandVetoException extends Exception
Exception used to stop and expand/collapse from happening. See How to Write a Tree-Will-Expand Listener in The Java Tutorial for further information and examples.
version
1.10 12/19/03
author
Scott Violet

Fields Summary
protected TreeExpansionEvent
event
The event that the exception was created for.
Constructors Summary
public ExpandVetoException(TreeExpansionEvent event)
Constructs an ExpandVetoException object with no message.

param
event a TreeExpansionEvent object

	this(event, null);
    
public ExpandVetoException(TreeExpansionEvent event, String message)
Constructs an ExpandVetoException object with the specified message.

param
event a TreeExpansionEvent object
param
message a String containing the message

	super(message);
	this.event = event;
    
Methods Summary