ExpandVetoExceptionpublic class ExpandVetoException extends Exception
Fields Summary |
---|
protected TreeExpansionEvent | eventThe event that the exception was created for. |
Constructors Summary |
---|
public ExpandVetoException(TreeExpansionEvent event)Constructs an ExpandVetoException object with no message.
this(event, null);
| public ExpandVetoException(TreeExpansionEvent event, String message)Constructs an ExpandVetoException object with the specified message.
super(message);
this.event = event;
|
|