return; // dont try to set null to a setter to a primitive type.
}
try {
this.method.invoke(obj, value);
} catch (IllegalAccessException e) {
throw new Sql2oException("error while calling setter method with name " + method.getName() + " on class " + obj.getClass().toString(), e);
} catch (InvocationTargetException e) {
throw new Sql2oException("error while calling setter method with name " + method.getName() + " on class " + obj.getClass().toString(), e);
}
}