BeanUtils.copyProperties(sforceObj, sforceDataRow);
return sforceObj;
} catch (IllegalAccessException e1) {
logger.error(Messages.getString("Visitor.dynaBeanError"), e1); //$NON-NLS-1$
throw new LoadException(e1);
} catch (InstantiationException e1) {
logger.fatal(Messages.getString("Visitor.dynaBeanError"), e1); //$NON-NLS-1$
throw new LoadException(e1);
} catch (InvocationTargetException e) {
logger.error(Messages.getString("Visitor.invocationError"), e); //$NON-NLS-1$
throw new LoadException(e);
}
}