Tagged Questions
1
vote
1answer
136 views
How do I get a correct backtrace for a custom error class in NodeJS?
My understanding for the "right" way to make a custom Error class in JavaScript is something like this:
function MyError(message) {
this.name = "MyError";
this.message = message || ...