dom-exception-table.json
4.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"IndexSizeError": {
"description": "The index is not in the allowed range.",
"legacyCodeName": "INDEX_SIZE_ERR",
"legacyCodeValue": 1
},
"HierarchyRequestError": {
"description": "The operation would yield an incorrect node tree.",
"legacyCodeName": "HIERARCHY_REQUEST_ERR",
"legacyCodeValue": 3
},
"WrongDocumentError": {
"description": "The object is in the wrong document.",
"legacyCodeName": "WRONG_DOCUMENT_ERR",
"legacyCodeValue": 4
},
"InvalidCharacterError": {
"description": "The string contains invalid characters.",
"legacyCodeName": "INVALID_CHARACTER_ERR",
"legacyCodeValue": 5
},
"NoModificationAllowedError": {
"description": "The object can not be modified.",
"legacyCodeName": "NO_MODIFICATION_ALLOWED_ERR",
"legacyCodeValue": 7
},
"NotFoundError": {
"description": "The object can not be found here.",
"legacyCodeName": "NOT_FOUND_ERR",
"legacyCodeValue": 8
},
"NotSupportedError": {
"description": "The operation is not supported.",
"legacyCodeName": "NOT_SUPPORTED_ERR",
"legacyCodeValue": 9
},
"InUseAttributeError": {
"description": "The attribute is in use.",
"legacyCodeName": "INUSE_ATTRIBUTE_ERR",
"legacyCodeValue": 10
},
"InvalidStateError": {
"description": "The object is in an invalid state.",
"legacyCodeName": "INVALID_STATE_ERR",
"legacyCodeValue": 11
},
"SyntaxError": {
"description": "The string did not match the expected pattern.",
"legacyCodeName": "SYNTAX_ERR",
"legacyCodeValue": 12
},
"InvalidModificationError": {
"description": "The object can not be modified in this way.",
"legacyCodeName": "INVALID_MODIFICATION_ERR",
"legacyCodeValue": 13
},
"NamespaceError": {
"description": "The operation is not allowed by Namespaces in XML.",
"legacyCodeName": "NAMESPACE_ERR",
"legacyCodeValue": 14
},
"InvalidAccessError": {
"description": "The object does not support the operation or argument.",
"legacyCodeName": "INVALID_ACCESS_ERR",
"legacyCodeValue": 15
},
"SecurityError": {
"description": "The operation is insecure.",
"legacyCodeName": "SECURITY_ERR",
"legacyCodeValue": 18
},
"NetworkError": {
"description": "A network error occurred.",
"legacyCodeName": "NETWORK_ERR",
"legacyCodeValue": 19
},
"AbortError": {
"description": "The operation was aborted.",
"legacyCodeName": "ABORT_ERR",
"legacyCodeValue": 20
},
"URLMismatchError": {
"description": "The given URL does not match another URL.",
"legacyCodeName": "URL_MISMATCH_ERR",
"legacyCodeValue": 21
},
"QuotaExceededError": {
"description": "The quota has been exceeded.",
"legacyCodeName": "QUOTA_EXCEEDED_ERR",
"legacyCodeValue": 22
},
"TimeoutError": {
"description": "The operation timed out.",
"legacyCodeName": "TIMEOUT_ERR",
"legacyCodeValue": 23
},
"InvalidNodeTypeError": {
"description": "The supplied node is incorrect or has an incorrect ancestor for this operation.",
"legacyCodeName": "INVALID_NODE_TYPE_ERR",
"legacyCodeValue": 24
},
"DataCloneError": {
"description": "The object can not be cloned.",
"legacyCodeName": "DATA_CLONE_ERR",
"legacyCodeValue": 25
},
"EncodingError": {
"description": "The encoding operation (either encoded or decoding) failed."
},
"NotReadableError": {
"description": "The I/O read operation failed."
},
"UnknownError": {
"description": "The operation failed for an unknown transient reason (e.g. out of memory)."
},
"ConstraintError": {
"description": "A mutation operation in a transaction failed because a constraint was not satisfied."
},
"DataError": {
"description": "Provided data is inadequate."
},
"TransactionInactiveError": {
"description": "A request was placed against a transaction which is currently not active, or which is finished."
},
"ReadOnlyError": {
"description": "The mutating operation was attempted in a \"readonly\" transaction."
},
"VersionError": {
"description": "An attempt was made to open a database using a lower version than the existing version."
},
"OperationError": {
"description": "The operation failed for an operation-specific reason."
}
}