Firefox Tomorrow

javascript instance data property

SuppressedError: suppressed

View on MDN ↗

The suppressed data property of a SuppressedError instance contains a reference to the original error that got suppressed because a new error was generated while handling it.

Value

Any value. Like cause, you cannot assume it’s an Error instance, although it usually is the case.

0

Examples

Using suppressed

try {
  throw new SuppressedError(
    new Error("New error"),
    new Error("Original error"),
    "Hello",
  );
} catch (e) {
  console.log(e.suppressed); // Error: "Original error"
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also