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
This has been an issue since 2.3.4 (and 2.4.0 presumably). It was put in for fix #444.
An invalid Currency used to say:
"Can not construct instance of java.util.Currency from String value 'XYZ': not a valid textual representation"
Now it says:
"Can not construct instance of java.util.Currency from String value 'XYZ': not a valid textual representation problem: null"
The code is in com.fasterxml.jackson.databind.deser.std.FromStringDeserializer.
Perhaps a simple fix is to check:
if (cause != null && cause.getMessage() != null) { msg += " problem: "+cause.getMessage(); }
adding in: "&& cause.getMessage() != null"
The text was updated successfully, but these errors were encountered:
This has been an issue since 2.3.4 (and 2.4.0 presumably). It was put in for fix #444.
An invalid Currency used to say:
"Can not construct instance of java.util.Currency from String value 'XYZ': not a valid textual representation"
Now it says:
"Can not construct instance of java.util.Currency from String value 'XYZ': not a valid textual representation problem: null"
The code is in com.fasterxml.jackson.databind.deser.std.FromStringDeserializer.
Perhaps a simple fix is to check:
if (cause != null && cause.getMessage() != null) { msg += " problem: "+cause.getMessage(); }
adding in: "&& cause.getMessage() != null"
The text was updated successfully, but these errors were encountered: