Package | dom.events |
Class | public class EventExceptionCode |
Inheritance | EventExceptionCode Object |
Introduced in: | DOM 2 Events |
Modified in: | DOM 3 Events |
See also
Constant | Defined By | ||
---|---|---|---|
DOM 3 Events DISPATCH_REQUEST_ERR : Number = 1 [static]
If the Event object is already dispatched in the tree. | EventExceptionCode | ||
DOM 2 Events UNSPECIFIED_EVENT_TYPE_ERR : Number = 0 [static]
If the Event.type was not specified by initializing the event
before the method was called. | EventExceptionCode |
DOM 3 Events DISPATCH_REQUEST_ERR | Constant |
public static const DISPATCH_REQUEST_ERR:Number = 1
Introduced in: | DOM 3 Events |
If the Event object is already dispatched in the tree.
See also
DOM 2 Events UNSPECIFIED_EVENT_TYPE_ERR | Constant |
public static const UNSPECIFIED_EVENT_TYPE_ERR:Number = 0
Introduced in: | DOM 2 Events |
If the Event.type was not specified by initializing the event before the method was called. Specification of the Event.type as null or an empty string will also trigger this exception.
See also