fruitstand
Version:
31 lines (27 loc) • 536 B
JavaScript
/**
* `APIError` error.
*
* References:
* - https://dev.twitter.com/docs/error-codes-responses
*
* @constructor
* @param {String} [message]
* @param {Number} [code]
* @api public
*/
function APIError(message, code) {
Error.call(this);
Error.captureStackTrace(this, arguments.callee);
this.name = 'APIError';
this.message = message;
this.code = code;
this.status = 500;
}
/**
* Inherit from `Error`.
*/
APIError.prototype.__proto__ = Error.prototype;
/**
* Expose `APIError`.
*/
module.exports = APIError;