1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #include "domstubs.idl"
- [scriptable, uuid(a6cf910a-15b3-11d2-932e-00805f8add32)]
- interface nsIDOMDOMException : nsISupports
- {
- const unsigned short INDEX_SIZE_ERR = 1;
- const unsigned short DOMSTRING_SIZE_ERR = 2;
- const unsigned short HIERARCHY_REQUEST_ERR = 3;
- const unsigned short WRONG_DOCUMENT_ERR = 4;
- const unsigned short INVALID_CHARACTER_ERR = 5;
- const unsigned short NO_DATA_ALLOWED_ERR = 6;
- const unsigned short NO_MODIFICATION_ALLOWED_ERR = 7;
- const unsigned short NOT_FOUND_ERR = 8;
- const unsigned short NOT_SUPPORTED_ERR = 9;
- const unsigned short INUSE_ATTRIBUTE_ERR = 10;
-
- const unsigned short INVALID_STATE_ERR = 11;
-
- const unsigned short SYNTAX_ERR = 12;
-
- const unsigned short INVALID_MODIFICATION_ERR = 13;
-
- const unsigned short NAMESPACE_ERR = 14;
-
- const unsigned short INVALID_ACCESS_ERR = 15;
-
- const unsigned short VALIDATION_ERR = 16;
-
- const unsigned short TYPE_MISMATCH_ERR = 17;
- readonly attribute unsigned long code;
- };
|