Merge pull request #12 from strongloop/SLA-370

Add error stack trace for ValidationError
This commit is contained in:
Raymond Feng 2013-09-12 11:04:13 -07:00
commit 2d072aa299
1 changed files with 4 additions and 2 deletions

View File

@ -1,3 +1,4 @@
var util = require('util');
/**
* Module exports
*/
@ -604,6 +605,7 @@ function ValidationError(obj) {
this.context = obj && obj.constructor && obj.constructor.modelName;
Error.call(this);
};
Error.captureStackTrace(this, this.constructor);
}
ValidationError.prototype.__proto__ = Error.prototype;
util.inherits(ValidationError, Error);