6061626364656667
*/ public static JsonNode asJson(String json) { try { return MAPPER.readTree(json); } catch (IOException e) { throw new RuntimeMappingException("Can't parse JSON. Bad content >> " + json.substring(0, PARSE_ERROR_EXCERPT_LENGTH) + "...", e); } }