Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

InternalError

Non-standard: This feature is not standardized. We do not recommend using non-standard features in production, as they have limited browser support, and may change or be removed. However, they can be a suitable alternative in specific cases where no standard option exists.

TheInternalError object indicates an error that occurred internally in the JavaScript engine.

Example cases are mostly when something is too large, e.g.:

  • "too many switch cases",
  • "too many parentheses in regular expression",
  • "array initializer too large",
  • "too much recursion".

InternalError is a subclass ofError.

Constructor

Instance properties

Also inherits instance properties from its parentError.

These properties are defined onInternalError.prototype and shared by allInternalError instances.

InternalError.prototype.constructor

The constructor function that created the instance object. ForInternalError instances, the initial value is theInternalError constructor.

InternalError.prototype.name

Represents the name for the type of error. ForInternalError.prototype.name, the initial value is"InternalError".

Instance methods

Inherits instance methods from its parentError.

Examples

Too much recursion

This recursive function runs 10 times, as per the exit condition.

js
function loop(x) {  // "x >= 10" is the exit condition  if (x >= 10) return;  // do stuff  loop(x + 1); // the recursive call}loop(0);

Setting this condition to an extremely high value, may not work:

js
function loop(x) {  if (x >= 1000000000000) return;  // do stuff  loop(x + 1);}loop(0);// InternalError: too much recursion

For more information, seeInternalError: too much recursion.

Specifications

Not part of any standard.

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp