{
return getProperty(bean, name);
}
catch (IllegalAccessException e)
{
throw new ObjectLookupException(LookupUtil.class, bean, name, e);
}
catch (InvocationTargetException e)
{
throw new ObjectLookupException(LookupUtil.class, bean, name, e);
}
catch (NoSuchMethodException e)
{
throw new ObjectLookupException(LookupUtil.class, bean, name, e);
}
catch (NestedNullException nne)
{
// don't throw exceptions for nulls
return null;