An open API service indexing awesome lists of open source software.

https://github.com/amekusa/exceptions.js


https://github.com/amekusa/exceptions.js

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Exceptions.JS
[📘 Documentations](https://amekusa.github.io/@amekusa/exceptions/latest/)

## Installation
```sh
npm i @amekusa/exceptions
```

In your JS:
```js
import { Exception } from '@amekusa/exceptions'; // ESM
const { Exception } = require('@amekusa/exceptions'); // CJS
```

### Available Exceptions:
```js
import {
Exception,
NoSuchProp,
InvalidType,
InvalidValue
} from '@amekusa/exceptions';
```

---

MIT © 2023 Satoshi Soma (https://github.com/amekusa)