blob: a95f6ab99a7e99fa7469a3b8c0d110f1b2aa10f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/**
* `FacebookGraphAPIError` error.
*
* References:
* - https://developers.facebook.com/docs/reference/api/errors/
*
* @constructor
* @param {string} [message]
* @param {string} [type]
* @param {number} [code]
* @param {number} [subcode]
* @param {string} [traceID]
* @access public
*/
function FacebookGraphAPIError(message, type, code, subcode, traceID) {
Error.call(this);
Error.captureStackTrace(this, arguments.callee);
this.name = 'FacebookGraphAPIError';
this.message = message;
this.type = type;
this.code = code;
this.subcode = subcode;
this.traceID = traceID;
this.status = 500;
}
// Inherit from `Error`.
FacebookGraphAPIError.prototype.__proto__ = Error.prototype;
// Expose constructor.
module.exports = FacebookGraphAPIError;
|