https://github.com/amekusa/exceptions.js
https://github.com/amekusa/exceptions.js
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amekusa/exceptions.js
- Owner: amekusa
- License: mit
- Created: 2022-12-16T08:56:22.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T14:15:41.000Z (over 2 years ago)
- Last Synced: 2025-02-07T04:34:28.291Z (4 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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)