throw new NullPointerException(getErrorMessage(nestedPath.toString(), rootClass));
}
Method method = BeanInfoCache.getWriteMethod(object.getClass(), propertyPath);
method.invoke(object, value);
} catch (InvocationTargetException e) {
throw new UncheckedException(e.getMessage(), e.getCause());
} catch (IllegalAccessException e) {
throw new UncheckedException(e.getMessage(), e.getCause());
}
}