InternalError

非标准
该特性是非标准的,请尽量不要在生产环境中使用它!

InternalError 对象表示出现在JavaScript引擎内部的错误。 例如: "InternalError: too much recursion"(内部错误:递归过深)。

语法

new InternalError([message[, fileName[, lineNumber]]])

参数

message
可选。 人类可读的错误描述信息。
fileName
可选。触发该错误的代码所在文件的文件名。
lineNumber
可选。触发该错误的代码所在的代码行号。

描述

当JavaScript引擎出现内部错误时将会抛出InternalError。

示例场景通常为某些成分过大,例如:

  • "too many switch cases"(过多case子句);
  • "too many parentheses in regular expression"(正则表达式中括号过多);
  • "array initializer too large"(数组初始化器过大);
  • "too much recursion"(递归过深)。

属性

InternalError.prototype
允许向 InternalError对象添加属性。

方法

全局 InternalError 对象自身不包含任何方法,但从原型链中继承了一些方法.

InternalError 实例

属性

方法

规范

尚未成为任何规范的一部分。

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本支持 未实现 (Yes) 未实现 未实现 未实现
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本支持 未实现 未实现 (Yes) 未实现 未实现 未实现

相关链接