public void setBody(byte[] json) {
try {
this.content = MAPPER.readTree(json);
} catch (IOException e) {
throw new RuntimeMappingException("Can't parse JSON. Bad content >> " + new String(json).substring(0, PARSE_ERROR_EXCERPT_LENGTH) + "...", e);
}
}