Packagedom.events
Classpublic class EventExceptionCode
InheritanceEventExceptionCode Inheritance Object

Introduced in: DOM 2 Events 
Modified in: DOM 3 Events 

An integer indicating the type of error generated.

See also

W3C - DOM 3 Events: EventExceptionCode


Public Constants
 ConstantDefined 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
Constant Detail
DOM 3 Events DISPATCH_REQUEST_ERRConstant
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_ERRConstant 
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