mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
41215eb29c
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
15 lines
326 B
JavaScript
15 lines
326 B
JavaScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
class DOMException extends Error {
|
|
#name = "";
|
|
|
|
constructor(message = "", name = "Error") {
|
|
super(message);
|
|
this.#name = name;
|
|
}
|
|
|
|
get name() {
|
|
return this.#name;
|
|
}
|
|
}
|