beanProxy.setValue(bean, propName, decodedObject);
}
catch (Exception e)
{
TranslationException ex = new TranslationException("Could not set object " + decodedObject + " on " + bean.getClass() + "'s " + propName);
ex.setCode("Server.Processing");
ex.setRootCause(e);
throw ex;
}
}
}