InternalError - JavaScript 编辑
非标准
该特性是非标准的,请尽量不要在生产环境中使用它!
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! Desktop Mobile
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
基本支持 | 未实现 | (Yes) | 未实现 | 未实现 | 未实现 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
基本支持 | 未实现 | 未实现 | (Yes) | 未实现 | 未实现 | 未实现 |
相关链接
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论