You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewAerospikeException(String.format("Property %s on class %s has a setter with 2 arguments, but the second one is neither a Key or a Value", this.name, className));
105
+
thrownewAerospikeException(String.format("Property %s on class %s has a setter with 2 arguments," +
106
+
" but the second one is neither a Key nor a Value", this.name, className));
thrownewAerospikeException(String.format("Setter for property %s on class %s must take 1 or 2 arguments", this.name, className));
108
+
} elseif (setter.getParameterCount() != 1) {
109
+
thrownewAerospikeException(String.format("Setter for property %s on class %s must take 1 or 2 arguments",
110
+
this.name, className));
111
111
}
112
112
setterClazz = setter.getParameterTypes()[0];
113
113
this.setter.setAccessible(true);
114
114
}
115
115
116
116
if (setterClazz != null && !getterClazz.equals(setterClazz)) {
117
-
thrownewAerospikeException(String.format("Getter (%s) and setter (%s) for property %s on class %s differ in type", getterClazz.getName(), setterClazz.getName(), this.name, className));
117
+
thrownewAerospikeException(String.format("Getter (%s) and setter (%s) for property %s on class %s differ in type",
0 commit comments