blob: e6e57699027169a7ffe3c8d4360d0702096e9ae3 (
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
|
---
title: InternalError
slug: Web/JavaScript/Reference/Global_Objects/InternalError
translation_of: Web/JavaScript/Reference/Global_Objects/InternalError
---
<div>{{JSRef}} {{non-standard_header}}</div>
<p><strong><code>InternalError </code></strong>객체는 JavaScript 엔진 내부에서 발생한 에러를 나타냅니다. 예를 들면, <strong>"InternalError</strong>: too much recursion"라는 에러가 있으며, 이것은 "내부 에러: 너무 많은 재귀 호출" 상황이 발생했을 때 나타납니다. </p>
<h2 id="구문">구문</h2>
<pre class="syntaxbox">new InternalError([<var>message</var>[, <var>fileName</var>[, <var>lineNumber</var>]]])</pre>
<h3 id="파라메터">파라메터</h3>
<dl>
<dt><code>message</code></dt>
<dd>선택적 파라메터. 에러에 대한 설명.</dd>
<dt><code>fileName</code> {{non-standard_inline}}</dt>
<dd>선택적 파라메터. 예외(Exception)가 발생한 코드를 포함하고 있는 파일 명.</dd>
<dt><code>lineNumber</code> {{non-standard_inline}}</dt>
<dd>선택적 파라메터. 예외(Exception)이 발생한 코드의 라인 넘버.</dd>
</dl>
<h2 id="설명">설명</h2>
<p><code>InternalError</code> 는 JavaScript 엔진에서 내부 에러가 발생할 때마다 던져집니다.</p>
<p>다음의 에러 예시 들의 경우는 일반적으로 어떤 값이 너무 큰 경우 입니다.</p>
<ul>
<li>"too many switch cases", (swich case의 수가 너무 많음.)</li>
<li>"too many parentheses in regular expression", (정규표현식에 너무 많은 괄호가 있음.)</li>
<li>"array initializer too large", (배열 초기화 값이 너무 큼.)</li>
<li>"too much recursion". (너무 많은 재귀 호출.)</li>
</ul>
<h2 id="속성">속성</h2>
<dl>
<dt>{{jsxref("InternalError.prototype")}}</dt>
<dd><code>InternalError</code> 객체에 속성을 추가하도록 해줍니다.</dd>
</dl>
<h2 id="메소드">메소드</h2>
<p>전역(global)의 <code>InternalError</code> 는 고유의 함수를 가지고 있지 않지만, 몇 가지의 메소드를 프로토타입 체인으로부터 상속받습니다.</p>
<h2 id="InternalError_인스턴스"><code>InternalError</code> 인스턴스</h2>
<h3 id="속성_2">속성</h3>
<div>{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError/prototype', 'Properties')}}</div>
<h3 id="메소드_2">메소드</h3>
<div>{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError/prototype', 'Methods')}}</div>
<h2 id="스펙">스펙</h2>
<p>Not part of any specifications.</p>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<div>{{CompatibilityTable}}</div>
<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>Basic support</td>
<td>{{CompatNo}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>Feature</th>
<th>Android</th>
<th>Chrome for Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>Basic support</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="참조">참조</h2>
<ul>
<li>{{jsxref("Error")}}</li>
<li>{{jsxref("InternalError.prototype")}}</li>
</ul>
|