diff options
Diffstat (limited to 'ext/js/core')
-rw-r--r-- | ext/js/core/extension-error.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/js/core/extension-error.js b/ext/js/core/extension-error.js index ab1c9dd7..6458f477 100644 --- a/ext/js/core/extension-error.js +++ b/ext/js/core/extension-error.js @@ -26,6 +26,8 @@ export class ExtensionError extends Error { */ constructor(message) { super(message); + /** @type {string} */ + this.name = 'ExtensionError'; /** @type {unknown} */ this._data = void 0; } |