Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ctring committed Jul 7, 2017
1 parent 5248991 commit 83e4b17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ protected void done() {
Throwable innerEx = ex.getCause();
String errorMessage = "";
if (innerEx instanceof GoogleJsonResponseException) {
GoogleJsonResponseException gjsonEx = (GoogleJsonResponseException)innerEx;
errorMessage = gjsonEx.getDetails().getMessage();
logger.error("Error while loading spreadsheet", gjsonEx);
GoogleJsonResponseException gJsonEx = (GoogleJsonResponseException)innerEx;
errorMessage = gJsonEx.getDetails().getMessage();
logger.error("Error while loading spreadsheet", gJsonEx);
}
else {
errorMessage = "Cannot connect to this spreadsheet.";
Expand Down

0 comments on commit 83e4b17

Please sign in to comment.