|
|
8 years ago | |
|---|---|---|
| .. | ||
| dist | 8 years ago | |
| LICENSE | 8 years ago | |
| README.md | 8 years ago | |
| package.json | 8 years ago | |
Make your own nested error types!
instanceoferror.stack and error.nametoStringnpm install make-error-cause --save
Usages from make-error. The only difference is that errors accept a second argument known as the error "cause". The cause is used to wrap original errors with more intuitive feedback - for instance, wrapping a raw database error in a HTTP error.
const CustomError = makeErrorCause('CustomError')
const cause = new Error('boom!')
const error = new CustomError('something bad', cause)
error.toString() //=> "CustomError: something bad\nCaused by: boom!"
error.stack // Works!
error.cause.stack // Handy!
Inspired by verror, and others, but created lighter and without core dependencies for browser usage.
Apache 2.0