File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
src/main/java/com/fasterxml/jackson/databind/exc Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 11package com .fasterxml .jackson .databind .exc ;
22
3+ import com .fasterxml .jackson .core .JsonParser ;
34import com .fasterxml .jackson .databind .DeserializationContext ;
45import com .fasterxml .jackson .databind .JavaType ;
56import com .fasterxml .jackson .databind .PropertyName ;
@@ -27,11 +28,18 @@ public class InvalidNullException
2728 /**********************************************************
2829 */
2930
31+ /**
32+ * @since 2.19
33+ */
34+ protected InvalidNullException (JsonParser p , String msg , PropertyName pname ) {
35+ super (p , msg );
36+ _propertyName = pname ;
37+ }
38+
3039 protected InvalidNullException (DeserializationContext ctxt , String msg ,
3140 PropertyName pname )
3241 {
33- super (ctxt == null ? null : ctxt .getParser (), msg );
34- _propertyName = pname ;
42+ this (ctxt == null ? null : ctxt .getParser (), msg , pname );
3543 }
3644
3745 public static InvalidNullException from (DeserializationContext ctxt ,
You can’t perform that action at this time.
0 commit comments