static String responseBodyUnchecked()

in src/main/java/com/spotify/github/v3/clients/GitHubClient.java [352:358]


  static String responseBodyUnchecked(final Response response) {
    try (ResponseBody body = response.body()) {
      return body.string();
    } catch (IOException e) {
      throw new UncheckedIOException("Failed getting response body for: " + response, e);
    }
  }