@aircall/exception
v0.1.6
Published
## Installation
Downloads
3,234
Keywords
Readme
Getting started
Installation
yarn add @aircall/exception
Usage
import { Exception } from '@aircall/exception';
try {
throw new Exception('This is an error message');
} catch (e) {
console.log(e.message);
}