ControllerErrorEventpublic class ControllerErrorEvent extends ControllerClosedEvent A ControllerErrorEvent describes an event that is
generated when an error condition occurs that will cause
a Controller to cease functioning. Events
should only subclass from ControllerErrorEvent if the
error being reported will result in catastrophic failure if action is
not taken, or if the Controller has already failed.
A ControllerErrorEvent indicates that
the Controller is closed. |
Constructors Summary |
---|
public ControllerErrorEvent(Controller from)
super(from);
| public ControllerErrorEvent(Controller from, String why)
super(from, why);
|
Methods Summary |
---|
public java.lang.String | toString()Returns the String representation of this event's values.
return getClass().getName() + "[source=" + eventSrc +
",message=" + message + "]";
|
|