W3cubDocs

/DOM

DOMException.constructor

The DOMException() constructor returns a DOMException object with a specified message and name.

Syntax

var domException = new DOMException();
var domException = new DOMException(message);
var domException = new DOMException(message, name);

Parameters

message Optional
A description of the exception. If not present, the empty string '' is used.
name Optional
Returns a DOMString that contains one of the strings associated with an error constant.

Return value

DOMException
A newly created DOMException object.

Example

TBD

Specifications

Specification Status Comment
Web IDL
The definition of 'DOMException()' in that specification.
Candidate Recommendation Adds the constructor for the DOMException class.

Browser CompatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support No No ? ? ? ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support No No No ? ? ? ?

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DOMException/DOMException