}
return target;
} catch (NoSuchFieldRuntimeException e) {
if (throwNoProperty) {
String clazname = object == null ? "null" : object.getClass().getName();
throw new NoSuchFieldRuntimeException("can't find property[" + ognl + "] in object[" + clazname + "]",
e);
} else {
return object;
}
}