make-error-cause
v2.3.0
Published
Make your own nested error types!
Downloads
2,108,468
Maintainers
Readme
Make Error Cause
Make your own nested errors.
Features
- Compatible with node.js and browsers
- Works with
instanceof
- Automatic full stack traces in node.js (supports
inspect()
) - Output full stack trace with
fullStack(err)
- Extends
make-error
Installation
npm install make-error-cause --save
Usage
import { BaseError, fullStack } from "make-error-cause";
class CustomError extends BaseError {
constructor(message, cause) {
super(message, cause);
}
}
const error = new Error("Boom!");
const customError = new CustomError("Another boom!", error);
console.log(customError); // Automatically prints full stack trace using `fullStack(this)`.
console.log(customError.cause); // Check causes via the `.cause` property.
console.log(customError instanceof Error); //=> true
Attribution
Inspired by verror
, and others, but created lighter and without core dependencies for browser usage.
Other references:
License
Apache 2.0