26 lines
548 B
JavaScript
Executable File
26 lines
548 B
JavaScript
Executable File
/**
|
|
* `GooglePlusAPIError` error.
|
|
*
|
|
* References:
|
|
* - https://developers.google.com/+/web/api/rest/
|
|
*
|
|
* @constructor
|
|
* @param {string} [message]
|
|
* @param {number} [code]
|
|
* @access public
|
|
*/
|
|
function GooglePlusAPIError(message, code) {
|
|
Error.call(this);
|
|
Error.captureStackTrace(this, arguments.callee);
|
|
this.name = 'GooglePlusAPIError';
|
|
this.message = message;
|
|
this.code = code;
|
|
}
|
|
|
|
// Inherit from `Error`.
|
|
GooglePlusAPIError.prototype.__proto__ = Error.prototype;
|
|
|
|
|
|
// Expose constructor.
|
|
module.exports = GooglePlusAPIError;
|