SuppressedError
En esta página
The SuppressedError object represents an error generated while handing another error. It is generated during resource disposal using {{jsxref("Statements/using", "using")}} or {{jsxref("Statements/await_using", "await using")}}.
Compared to {{jsxref("AggregateError")}}, SuppressedError represents an error that happened during the handling of another error, while AggregateError represents a list of unrelated errors. It is possible, though, for a SuppressedError to contain a chain of suppressed errors (e.suppressed.suppressed.suppressed...). It is also semantically different from {{jsxref("Error/cause", "cause")}} because the error is not caused by another error, but happens when handling another error.
SuppressedError is a subclass of {{jsxref("Error")}}.
Constructor#
- {{jsxref("SuppressedError/SuppressedError", "SuppressedError()")}}
- : Creates a new
SuppressedErrorobject.
Instance properties#
Also inherits instance properties from its parent {{jsxref("Error")}}.
These properties are defined on SuppressedError.prototype and shared by all SuppressedError instances.
- {{jsxref("Object/constructor", "SuppressedError.prototype.constructor")}}
- : The constructor function that created the instance object. For
SuppressedErrorinstances, the initial value is the {{jsxref("SuppressedError/SuppressedError", "SuppressedError")}} constructor. - {{jsxref("Error/name", "SuppressedError.prototype.name")}}
- : Represents the name for the type of error. For
SuppressedError.prototype.name, the initial value is"SuppressedError".
[!NOTE]
SuppressedErrornever has the {{jsxref("Error/cause", "cause")}} property, because the semantics ofcauseoverlaps withsuppressed.
These properties are own properties of each SuppressedError instance.
- {{jsxref("SuppressedError/error", "error")}}
- : A reference to the error that results in the suppression.
- {{jsxref("SuppressedError/suppressed", "suppressed")}}
- : A reference to the error that is suppressed by
error.
Instance methods#
Inherits instance methods from its parent {{jsxref("Error")}}.
Examples#
Catching a SuppressedError#
A SuppressedError is thrown when an error occurs during resource disposal. Throwing an error causes scope cleanup, and each disposer during the cleanup can throw its own error. All these errors are collected into a chain of SuppressedError instances, with the original error as the suppressed property and the new error thrown by the next disposer as the error property.
try {
using resource1 = {
[Symbol.dispose]() {
throw new Error("Error while disposing resource1");
},
};
using resource2 = {
[Symbol.dispose]() {
throw new Error("Error while disposing resource2");
},
};
throw new Error("Original error");
} catch (e) {
console.log(e instanceof SuppressedError); // true
console.log(e.message); // "An error was suppressed during disposal"
console.log(e.name); // "SuppressedError"
console.log(e.error); // Error: Error while disposing resource1
console.log(e.suppressed); // SuppressedError: An error was suppressed during disposal
console.log(e.suppressed.error); // Error: Error while disposing resource2
console.log(e.suppressed.suppressed); // Error: Original error
}
The chain looks like this:
SuppressedError --suppressed--> SuppressedError --suppressed--> Original error
| |
error error
v v
Error while disposing resource1 Error while disposing resource2
(Disposal happens later) (Disposal happens earlier)
Creating a SuppressedError#
try {
throw new SuppressedError(
new Error("New error"),
new Error("Original error"),
"Hello",
);
} catch (e) {
console.log(e instanceof SuppressedError); // true
console.log(e.message); // "Hello"
console.log(e.name); // "SuppressedError"
console.log(e.error); // Error: "New error"
console.log(e.suppressed); // Error: "Original error"
}
Specifications#
{{Specifications}}
Browser compatibility#
{{Compat}}
See also#
- Polyfill of
SuppressedErrorincore-js - {{jsxref("Error")}}
- {{jsxref("Statements/using", "using")}}
- {{jsxref("Statements/await_using", "await using")}}
- {{jsxref("DisposableStack")}}
- {{jsxref("AsyncDisposableStack")}}