Set the target's value by invoking the targetMethod.
try {
targetMethod.invoke(targetObject, new Object [] { value });
} catch (IllegalAccessException accEx) {
log.error(Messages.getMessage("illegalAccessException00"),
accEx);
throw new SAXException(accEx);
} catch (IllegalArgumentException argEx) {
log.error(Messages.getMessage("illegalArgumentException00"),
argEx);
throw new SAXException(argEx);
} catch (InvocationTargetException targetEx) {
log.error(Messages.getMessage("invocationTargetException00"),
targetEx);
throw new SAXException(targetEx);
}