Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing space to error message
  • Loading branch information
davidbanham committed Mar 8, 2017
1 parent 23949da commit 2a4dc93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/application.js
Expand Up @@ -130,7 +130,7 @@ _.extend(Application.prototype, {
exception = obj.ApiException;
else if (obj.Response.ErrorNumber)
exception = obj.Response;
var errObj = new Error(method.toUpperCase() + 'call failed with: ' + err.statusCode + ' and exception: ' + JSON.stringify(exception, null, 2));
var errObj = new Error(method.toUpperCase() + ' call failed with: ' + err.statusCode + ' and exception: ' + JSON.stringify(exception, null, 2));
deferred.reject(errObj);
callback && callback(errObj);
} else {
Expand Down

0 comments on commit 2a4dc93

Please sign in to comment.