if (translateNce) {
try {
entity = bodyReader.readFrom(context.getType(), context.getGenericType(), context.getAnnotations(),
context.getMediaType(), context.getHeaders(), input);
} catch (NoContentException ex) {
throw new BadRequestException(ex);
}
} else {
entity = bodyReader.readFrom(context.getType(), context.getGenericType(), context.getAnnotations(),
context.getMediaType(), context.getHeaders(), input);
}