Skip to content

Commit

Permalink
Merge pull request #28 from skoobe/md5_crashfix
Browse files Browse the repository at this point in the history
crashfix: RequestHandler: more generic exception catching to catch java.lang.AssertionError on executing the http request
  • Loading branch information
wellle committed Jan 13, 2014
2 parents 0c545af + f355b9a commit 960e241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AdjustIo/src/com/adeven/adjustio/RequestHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ private void sendInternal(ActivityPackage activityPackage) {
closePackage(activityPackage, "Request timed out", e);
} catch (IOException e) {
closePackage(activityPackage, "Request failed", e);
} catch (Exception e) {
sendNextPackage(activityPackage, "Runtime exeption", e);
} catch (Throwable e) {
sendNextPackage(activityPackage, "Runtime exception", e);
}
}

Expand Down

0 comments on commit 960e241

Please sign in to comment.