aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/javascript/reference/objets_globaux/internalerror/index.html
blob: a743ef18ca272ae63dcee68cdad81180c682a600 (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
---
title: InternalError
slug: Web/JavaScript/Reference/Objets_globaux/InternalError
tags:
  - Error
  - InternalError
  - JavaScript
  - Reference
translation_of: Web/JavaScript/Reference/Global_Objects/InternalError
---
<div>{{JSRef}} {{non-standard_header}}</div>

<p>L'objet <strong><code>InternalError</code></strong> indique qu'une erreur liée au moteur JavaScript s'est produite. Par exemple <strong>"InternalError </strong>: Niveau de récursion trop important".</p>

<h2 id="Syntaxe">Syntaxe</h2>

<pre class="syntaxbox">new InternalError([<var>message</var>[, <var>fileName</var>[, <var>lineNumber</var>]]])</pre>

<h3 id="Paramètres">Paramètres</h3>

<dl>
 <dt><code>message</code></dt>
 <dd>Paramètre optionnel. Une description de l'erreur compréhensible pour un être humain.</dd>
 <dt><code>fileName</code> {{Non-standard_inline}}</dt>
 <dd>Paramètre optionnel. Le nom du fichier contenant le code à l'origine de l'erreur.</dd>
 <dt><code>lineNumber</code> {{Non-standard_inline}}</dt>
 <dd>Paramètre optionnel. Le numéro de la ligne du code à l'origine de l'erreur.</dd>
</dl>

<h2 id="Description">Description</h2>

<p>Une exception <code>InternalError</code> est levée à chaque fois qu'il se produit une erreur interne au moteur JavaScript.</p>

<p>Le plus souvent, cette exception se produit lorsque quelque chose atteint un niveau trop élévé. Par exemple :</p>

<ul>
 <li>trop de cas dans une construction switch,</li>
 <li>trop de parenthèses au sein d'une expression rationnelle,</li>
 <li>un tableau littéral trop grand,</li>
 <li>trop de niveaux de récursion.</li>
</ul>

<h2 id="Propriétés">Propriétés</h2>

<dl>
 <dt>{{jsxref("InternalError.prototype")}}</dt>
 <dd>Permet l'ajout de nouvelles propriétés à un objet <code>InternalError</code>.</dd>
</dl>

<h2 id="Méthodes">Méthodes</h2>

<p>L'objet global <code>InternalError</code> ne contient pas de méthode propre. En revanche, il hérite de certaines méthodes via sa chaîne de prototypes.</p>

<h2 id="Instances_de_InternalError">Instances de <code>InternalError</code></h2>

<h3 id="Propriétés_2">Propriétés</h3>

<div>{{page("/fr/docs/JavaScript/Reference/Objets_globaux/InternalError/prototype","Properties")}}</div>

<h3 id="Méthodes_2">Méthodes</h3>

<div>{{page("/fr/docs/JavaScript/Reference/Objets_globaux/InternalError/prototype","Methods")}}</div>

<h2 id="Spécifications">Spécifications</h2>

<p>Cet objet ne fait partie d'aucune spécification.</p>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>

<div>
<div class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et à nous envoyer une <em>pull request</em>.</div>

<p>{{Compat("javascript.builtins.InternalError")}}</p>
</div>

<h2 id="Voir_aussi">Voir aussi</h2>

<ul>
 <li>{{jsxref("Error")}}</li>
 <li>{{jsxref("InternalError.prototype")}}</li>
</ul>