DOMException: DOMException() コンストラクター
DOMException()
コンストラクターは、指定されたメッセージと名前を持つ DOMException
オブジェクトを返します。
構文
js
new DOMException()
new DOMException(message)
new DOMException(message, name)
引数
返値
新しく作成された DOMException
オブジェクトです。
例
この例では、ボタンを押すと独自の DOMException
が発生し、それがキャッチされ、独自のエラーメッセージがアラートに表示されます。
HTML
html
<button>Trigger DOM Exception</button>
<p id="output"></p>
JavaScript
js
const button = document.querySelector("button");
button.onclick = () => {
try {
throw new DOMException("Custom DOM Exception Triggered.");
} catch (error) {
document.querySelector("#output").textContent = `Error: ${error.message}`;
}
};
例
仕様書
Specification |
---|
Web IDL Standard # dom-domexception-domexception |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
DOMException
コンストラクターのポリフィルがcore-js
で利用できます