if (this.writeMethod == null) {
throw new NoSuchMethodException(this.getBeanDescriptor().getType().getCanonicalName() + "." + this.writeMethodName);
}
this.writeMethod.invoke(o, new Object[] { value });
} catch (Exception e) {
throw new ReflectionException(e);
}
}