FileDocCategorySizeDatePackage
ControllerErrorEvent.javaAPI DocJMF 2.1.1e1195Mon May 12 12:20:36 BST 2003javax.media

ControllerErrorEvent

public 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.
see
Controller
see
ControllerListener
version
1.3, 02/08/21

Fields Summary
Constructors Summary
public ControllerErrorEvent(Controller from)

        super(from);
    
public ControllerErrorEvent(Controller from, String why)

        super(from, why);
    
Methods Summary
public java.lang.StringtoString()
Returns the String representation of this event's values.

	return getClass().getName() + "[source=" + eventSrc + 
	    ",message=" + message + "]";