if (HYSTRIX_CLASSES.contains(rawType)) {
//Let the Hystrix Proxy wrap this
return read(response, actualType);
}
} else if (HYSTRIX_CLASSES.contains(type)) {
throw new DecodeException("Return type "+type+" must be parameterized");
}
return read(response, type);
} catch(RuntimeJsonMappingException e) {