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 || "Default Message";  
}  
MyError.prototype = new Error();  
MyError.prototype.constructor = MyError;

(Code snippet mooked from https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error.)

With NodeJS, if I try to check for an error of this type like:

var err = new MyError("whoops");
assert.ifError(err);

...the backtrace will show the context of the Error object I created at compile time to be the prototype for MyError, not the MyError object I created with "new MyError()".

Is there some way that I can get the correct backtrace data for the actual error, rather than the prototype?

link|improve this question
You might be seeing the symptoms of a bug in V8: code.google.com/p/chromium/issues/detail?id=60240 Or perhaps this one: code.google.com/p/chromium/issues/detail?id=99341 – Daniel Dickison Dec 10 '11 at 18:59
I think I might have found how to do this: code.google.com/p/v8/wiki/JavaScriptStackTraceApi – Evan P. Dec 10 '11 at 19:42
feedback

1 Answer

up vote 1 down vote accepted

We need to invoke the super function - captureStackTrace

function MyError(message) {
  Error.call(this); //super constructor
  Error.captureStackTrace(this, this.constructor); //super helper method to include stack trace in error object

  this.name = this.constructor.name; //set our function’s name as error name.
  this.message = message; //set the error message

} MyError.prototype.__proto__ = Error.prototype;

Ref: http://jayyy0v.wordpress.com/2011/12/08/creating-custom-error-extending-error-type-in-node-js/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.