nested-error-stacks icon indicating copy to clipboard operation
nested-error-stacks copied to clipboard

A node.js module for creating Error objects with nested Errors in stacktraces

Results 2 nested-error-stacks issues
Sort by recently updated
recently updated
newest added

When enabling bluebird's long stack traces, the appended `Caused By...` gets removed and a confusing/misleading stacktrace is created. The resulting stacktrace is the first part of the nested error stacktrace...

I not 100% sure I don't think this class meets the `class` es6 specifications because you are overriding the `stack` attribute which makes it hard to extend and modify the...