fruitstand
Version:
35 lines (31 loc) • 837 B
JavaScript
/**
* `FacebookAuthorizationError` error.
*
* FacebookAuthorizationError represents an error in response to an
* authorization request on Facebook. Note that these responses don't conform
* to the OAuth 2.0 specification.
*
* References:
* - https://developers.facebook.com/docs/reference/api/errors/
*
* @constructor
* @param {String} [message]
* @param {Number} [code]
* @api public
*/
function FacebookAuthorizationError(message, code) {
Error.call(this);
Error.captureStackTrace(this, arguments.callee);
this.name = 'FacebookAuthorizationError';
this.message = message;
this.code = code;
this.status = 500;
}
/**
* Inherit from `Error`.
*/
FacebookAuthorizationError.prototype.__proto__ = Error.prototype;
/**
* Expose `FacebookAuthorizationError`.
*/
module.exports = FacebookAuthorizationError;