aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/domerror/index.html
blob: 1251609ed33e6e60967cae0068f63eb1a07b96d0 (plain)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
---
title: DOMError
slug: Web/API/DOMError
tags:
  - API
  - DOM
  - Fehler
  - Interface
  - Referenz
translation_of: Web/API/DOMError
---
<p>{{ APIRef("DOM") }}</p>

<p>Das <strong><code>DOMError-</code></strong>Interface beschreibt ein Fehler-Objekt, welches ein Fehlername enthält.</p>

<h2 id="Eigenschaften">Eigenschaften</h2>

<dl>
 <dt>{{domxref("DOMError.name")}} {{readOnlyInline}}</dt>
 <dd>Gibt ein {{ domxref("DOMString") }} zurück, welcher einer der folgenden Fehlertypnamen repäsentiert (siehe unten).</dd>
</dl>

<h2 id="Fehlertypen">Fehlertypen</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td>Typ</td>
   <td>Beschreibung</td>
  </tr>
  <tr>
   <td><code>IndexSizeError</code></td>
   <td>Der Index ist ausserhalb des gültigen Bereichs (z. B. bei einem {{ domxref("range") }}-Objekt).</td>
  </tr>
  <tr>
   <td><code>HierarchyRequestError</code></td>
   <td>Die  Knoten-Baum-Hierarchie ist nicht korrekt.</td>
  </tr>
  <tr>
   <td><code>WrongDocumentError</code></td>
   <td>Das Objekt ist im falschen {{ domxref("document") }}.</td>
  </tr>
  <tr>
   <td><code>InvalidCharacterError</code></td>
   <td>Der String beeinhaltet unglütige Charakter.</td>
  </tr>
  <tr>
   <td><code>NoModificationAllowedError</code></td>
   <td>Das Objekt kann nicht modifiziert werden.</td>
  </tr>
  <tr>
   <td><code>NotFoundError</code></td>
   <td>Das Objekt kann nicht gefunden werden.</td>
  </tr>
  <tr>
   <td><code>NotSupportedError</code></td>
   <td>Die Operation wird nicht unterstützt</td>
  </tr>
  <tr>
   <td><code>InvalidStateError</code></td>
   <td>Das Objekt hat einen ungültigen Status.</td>
  </tr>
  <tr>
   <td><code>SyntaxError</code></td>
   <td><span class="hps">Der String entspricht </span><span class="hps">nicht den erwarteten</span> <span class="hps">Muster.</span></td>
  </tr>
  <tr>
   <td><code>InvalidModificationError</code></td>
   <td>Das Objekt kann nicht in dieser Art modifiziert werden.</td>
  </tr>
  <tr>
   <td><code>NamespaceError</code></td>
   <td>Die Operation ist nicht erlaubt in XML-Namespaces.</td>
  </tr>
  <tr>
   <td><code>InvalidAccessError</code></td>
   <td>Das Objekt unterstützt diese Operation oder dieses Argument nicht.</td>
  </tr>
  <tr>
   <td><code>TypeMismatchError</code></td>
   <td>Der Typ des Objekts entspricht nicht dem erwarteten Typ.</td>
  </tr>
  <tr>
   <td><code>SecurityError</code></td>
   <td>Diese Operation ist unsicher.</td>
  </tr>
  <tr>
   <td><code>NetworkError</code></td>
   <td>Ein Netzwerkfehler ist aufgetreten.</td>
  </tr>
  <tr>
   <td><code>AbortError</code></td>
   <td>Die Operation wurde abgebrochen.</td>
  </tr>
  <tr>
   <td><code>URLMismatchError</code></td>
   <td>Die angegebene URL entspricht nicht einer anderen URL.</td>
  </tr>
  <tr>
   <td><code>QuotaExceededError</code></td>
   <td>Das Kontingent wurde überschritten.</td>
  </tr>
  <tr>
   <td><code>TimeoutError</code></td>
   <td>Timeout bei der Operation.</td>
  </tr>
  <tr>
   <td><code>InvalidNodeTypeError</code></td>
   <td>Der Knoten ist nicht korrekt oder hat falsche Vorfahren für die Operation.</td>
  </tr>
  <tr>
   <td><code>DataCloneError</code></td>
   <td>Das Objekt kann nicht geklont werden.</td>
  </tr>
 </tbody>
</table>

<h2 id="Spezifikationen">Spezifikationen</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spezifikation</th>
   <th scope="col">Status</th>
   <th scope="col">Kommentar</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM4', '#interface-domerror', 'DOMError')}}</td>
   <td>{{Spec2('DOM4')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser-Kompatiblität">Browser-Kompatiblität</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari</th>
  </tr>
  <tr>
   <td>Basissupport</td>
   <td>{{CompatUnknown}}</td>
   <td>12.0</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatVersionUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Basissupport</td>
   <td>{{CompatUnknown}}</td>
   <td>12.0</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
   <td>{{CompatUnknown}}</td>
  </tr>
 </tbody>
</table>
</div>

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li>{{ domxref("DOMException") }}</li>
</ul>