Skip to content

Commit

Permalink
Fix compilation errors related to error reporting refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelbjohnson committed Jun 28, 2016
1 parent 0907145 commit b8b8a0f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ protected <T> T doGet(String path, Type typeOfT, boolean experimental) throws IO
}
} catch (InterruptedException i) {
logger.println("Thread was interrupted while waiting to re-attempt GET");
throw new CodeDxClientException("Thread was interrupted. Unabled to finish GET", -1);
throw new CodeDxClientException("GET", path, "Thread was interrupted. Unabled to finish GET", -1, "");
}
//This shouldn't happen, but we all know how that assumption turns out.
throw new CodeDxClientException("GET was unsuccessful for " + path, -1);
throw new CodeDxClientException("GET", path, "GET was unsuccessful for " + path, -1, "");
}
}

0 comments on commit b8b8a0f

Please sign in to comment.