Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;  
share|improve this question

3 Answers

Use Object.create() to make the new prototype object, and add a non enumerable construtor property back in.

AccessDenied.prototype = Object.create(Error.prototype, {
    constructor: {
        value: AccessDenied,
        writeable: true,
        configurable: true,
        enumerable: false
    }
});  

Or if you don't care about the constructor property:

AccessDenied.prototype = Object.create(Error.prototype); 
share|improve this answer
"use strict";

/**
 * Module dependencies.
*/
var sys = require("sys");

var CustomException = function() {
    Error.call(this, arguments);    
};
sys.inherits(CustomException, Error);

exports = module.exports = CustomException;
share|improve this answer
1  
I'm curious why you set exports = module.exports = CustomException? What does this do? I thought you either used exports or module.exports in a file, not both. – Shane Stillwell Dec 5 '12 at 21:55
@ShaneStillwell exports just points to module.exports. By default it's an empty object, so you can assign new keys to either and it just works (e.g. exports.thing = 42). However, if you do exports = 42, you overwrite the exports variable, which is local to the module, but module.exports will still point to the empty object. Using both may seem superfluous, but it also works the other way around: if you overwrite module.exports, exports will still point to that empty object. So to prevent problems elsewhere in the module, you overwrite by assigning to both. – PPvG Mar 27 at 22:28
var AccessDenied = exports.AccessDenied = function ( message ) { /*...*/ };
var F = function ( ) { };
F.prototype = Error.prototype;
AccessDenied.prototype = new F();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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