1.0.1 • Published 4 years ago

ezerrors v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

ezerrors

Easily generate custom Error classes

const { CustomError, OtherError } = require('ezerrors')

const myError = new CustomError('Something went wrong!')
const myOtherError = new OtherError('Another error')

myError instanceof require('ezerrors').CustomError // true
myError instanceof myOtherError // false