Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ protected final Object _deserializeWithErrorWrapping(JsonParser p, Deserializati
try {
return prop.deserialize(p, ctxt);
} catch (Exception e) {
wrapAndThrow(e, _valueClass.getClass(), prop.getName(), ctxt);
wrapAndThrow(e, _valueClass, prop.getName(), ctxt);
// never gets here, unless caller declines to throw an exception
return null;
}
Expand Down Expand Up @@ -205,4 +205,4 @@ private Throwable throwOrReturnThrowable(Throwable t, DeserializationContext ctx
}
return t;
}
}
}