files/en-us/web/api/domexception/domexception/index.md
{{APIRef("DOM")}}{{AvailableInWorkers}}
The DOMException() constructor returns a
{{domxref("DOMException")}} object with a specified message and name.
new DOMException()
new DOMException(message)
new DOMException(message, name)
message {{optional_inline}}
'' is used.name {{optional_inline}}
code property of the DOMException object will return the code number corresponding to the specified name. If not present, the string 'Error' is used.A newly created {{domxref("DOMException")}} object.
In this example, pressing the button causes a custom DOMException to be thrown, which is then caught and the custom error message shown in an alert.
<button>Trigger DOM Exception</button>
<p id="output"></p>
const button = document.querySelector("button");
button.onclick = () => {
try {
throw new DOMException("Custom DOM Exception Triggered.");
} catch (error) {
document.querySelector("#output").textContent = `Error: ${error.message}`;
}
};
{{ EmbedLiveSample('Examples', '100%', 100) }}
{{Specifications}}
{{Compat}}
DOMException constructor is available in core-js