3334353637383940
public static <T> T parse(String content, Class<T> type) { try { return mapper.readValue(content, type); } catch (IOException e) { throw new DropboxJsonException("Exception while parsing json: " + content, e); } }