2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-14 18:42:33 +03:00

Modify createError and enhanceError functions to accept response as parameter

This commit is contained in:
Nick Uraltsev
2016-06-13 18:58:55 -07:00
parent 91dae3c4ad
commit 6f2186d863
3 changed files with 16 additions and 10 deletions
+5 -4
View File
@@ -3,14 +3,15 @@
var enhanceError = require('./enhanceError');
/**
* Create an Error with the specified message, config, and optional error code.
* Create an Error with the specified message, config, error code, and response.
*
* @param {string} message The error message.
* @param {Object} config The config object.
* @param {Object} config The config.
* @param {string} [code] The error code (for example, 'ECONNABORTED').
@ @param {Object} [response] The response.
* @returns {Error} The created error.
*/
module.exports = function createError(message, config, code) {
module.exports = function createError(message, config, code, response) {
var error = new Error(message);
return enhanceError(error, config, code);
return enhanceError(error, config, code, response);
};