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
- messageOptional
- A description of the exception. If not present, the empty string ''is used.
- nameOptional
- Returns a DOMStringthat contains one of the strings associated with an error constant.
- 
 Return value
- DOMException
- A newly created DOMExceptionobject.
Example
TBD
Specifications
| Specification | Status | Comment | 
|---|---|---|
| Web IDL (Second Edition) The definition of 'constructor' in that specification. | Candidate Recommendation | Adds the constructor for the DOMExceptionclass. | 
Browser Compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari | 
|---|---|---|---|---|---|
| Basic support | 46.0 | ? | ? | ? | ? | 
| Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android | 
|---|---|---|---|---|---|---|---|
| Basic support | No support | 46.0 | ? | ? | ? | ? | 46.0 |