Skip to content

Commit

Permalink
Fix reference to undefined obj
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbanham committed Mar 7, 2017
1 parent c75e2da commit 2ced013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/application.js
Expand Up @@ -180,7 +180,7 @@ _.extend(Application.prototype, {
}

if (err) {
var errObj = { statusCode: err.statusCode, exception: obj.ApiException };
var errObj = { statusCode: err.statusCode };
deferred.reject(errObj);
callback && callback(errObj);
return;
Expand Down

0 comments on commit 2ced013

Please sign in to comment.