JsonElement response = parser.parse(new InputStreamReader(jsonContent, UTF_8_CHAR_SET));
if (response.isJsonObject()) {
JsonObject adaptee = response.getAsJsonObject();
return unmarshallList(clazz, adaptee);
}
throw new StackExchangeApiException("Unknown content found in response:" + response.toString());
} catch (Exception e) {
throw new StackExchangeApiException(e);
}
}