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
ObjectMapper objectMapper = new ObjectMapper();
String s = "123 rest of string";
Object o = objectMapper.readValue(s, Object.class); // should throw exception
System.out.println(o); // 123
Expected behavior
Throw a JsonParseException
The text was updated successfully, but these errors were encountered:
Describe the bug
See title
Version information
2.12.7
To Reproduce
Expected behavior
Throw a JsonParseException
The text was updated successfully, but these errors were encountered: