Sha256: cf0c6edda1bad476375cdc4ad37e602e993997cff476ea4f23d201f9d3c5798f

Contents?: true

Size: 1.09 KB

Versions: 20

Compression:

Stored size: 1.09 KB

Contents

# DOMException

This package implements the [`DOMException`](https://heycam.github.io/webidl/#idl-DOMException) class, from web browsers. It exists in service of [jsdom](https://github.com/tmpvar/jsdom) and related packages.

Example usage:

```js
const DOMException = require("domexception");

const e1 = new DOMException("Something went wrong", "BadThingsError");
console.assert(e1.name === "BadThingsError");
console.assert(e1.code === 0);

const e2 = new DOMException("Another exciting error message", "NoModificationAllowedError");
console.assert(e2.name === "NoModificationAllowedError");
console.assert(e2.code === 7);

console.assert(DOMException.INUSE_ATTRIBUTE_ERR === 10);
```

## APIs

This package exposes two flavors of the `DOMException` interface depending on the imported module.

### `domexception` module

This module default-exports the `DOMException` interface constructor.

### `domexception/webidl2js-wrapper` module

This module exports the `DOMException` [interface wrapper API](https://github.com/jsdom/webidl2js#for-interfaces) generated by [webidl2js](https://github.com/jsdom/webidl2js).

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
appmap-0.72.2 ./node_modules/domexception/README.md
appmap-0.72.1 ./node_modules/domexception/README.md
appmap-0.72.0 ./node_modules/domexception/README.md
appmap-0.71.0 ./node_modules/domexception/README.md
appmap-0.70.2 ./node_modules/domexception/README.md
appmap-0.70.1 ./node_modules/domexception/README.md
appmap-0.70.0 ./node_modules/domexception/README.md
appmap-0.69.0 ./node_modules/domexception/README.md
appmap-0.68.2 ./node_modules/domexception/README.md
appmap-0.68.1 ./node_modules/domexception/README.md
appmap-0.68.0 ./node_modules/domexception/README.md
appmap-0.67.1 ./node_modules/domexception/README.md
appmap-0.67.0 ./node_modules/domexception/README.md
appmap-0.66.2 ./node_modules/domexception/README.md
appmap-0.66.1 ./node_modules/domexception/README.md
appmap-0.66.0 ./node_modules/domexception/README.md
appmap-0.65.1 ./node_modules/domexception/README.md
appmap-0.65.0 ./node_modules/domexception/README.md
appmap-0.64.0 ./node_modules/domexception/README.md
appmap-0.63.0 ./node_modules/domexception/README.md