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
msg ="Instantiation of ${this.valueTypeDesc} value failed for JSON property ${jsonProp.name} due to missing (therefore NULL) value for creator parameter ${paramDef.name} which is a non-nullable type"
85
+
throwMismatchedInputException.from(
86
+
ctxt.parser,
87
+
jsonProp.type,
88
+
"Instantiation of $valueTypeDesc value failed for JSON property ${jsonProp.name}"+
89
+
"due to missing (therefore NULL) value for creator parameter ${paramDef.name}"+
90
+
"which is a non-nullable type"
88
91
).wrapWithPath(this.valueClass, jsonProp.name)
89
92
}
90
93
@@ -107,10 +110,10 @@ internal class KotlinValueInstantiator(
107
110
}
108
111
109
112
if (paramType !=null&& itemType !=null) {
110
-
throwMissingKotlinParameterException(
111
-
parameter = paramDef,
112
-
processor = ctxt.parser,
113
-
msg ="Instantiation of $itemType$paramType failed for JSON property ${jsonProp.name} due to null value in a $paramType that does not allow null values"
113
+
throwMismatchedInputException.from(
114
+
ctxt.parser,
115
+
jsonProp.type,
116
+
"Instantiation of $itemType$paramType failed for JSON property ${jsonProp.name} due to null value in a $paramType that does not allow null values"
0 commit comments