public void writeProperty(Object bean, Path path, Object value) throws UnknownPropertyException, ReadOnlyPropertyException, TargetBeanIsNullException
{
if (bean == null)
{
throw new TargetBeanIsNullException(path, beanClass);
}
Method setter= getSetter(path);
try