I'm using Node.JS and ExpressJS. The following code is used to extend the Errors object with my own messages and works well enough, but I understand that __proto__ is non-standard.
How would I rewrite the following code without the __proto__?
var AccessDenied = exports.AccessDenied = function(message) {
this.name = 'AccessDenied';
this.message = message;
Error.call(this, message);
Error.captureStackTrace(this, arguments.callee);
};
AccessDenied.prototype.__proto__ = Error.prototype;