FileDocCategorySizeDatePackage
EventException.javaAPI DocAndroid 1.5 API1593Wed May 06 22:42:46 BST 2009org.w3c.dom.events

EventException

public class EventException extends RuntimeException
Event operations may throw an EventException as specified in their method descriptions.

See also the Document Object Model (DOM) Level 3 Events Specification .

since
DOM Level 2

Fields Summary
public short
code
public static final short
UNSPECIFIED_EVENT_TYPE_ERR
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.
Constructors Summary
public EventException(short code, String message)

       super(message);
       this.code = code;
    
Methods Summary