We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d1aac6 commit d652a84Copy full SHA for d652a84
release-notes/VERSION
@@ -18,6 +18,7 @@ JSON library.
18
19
#209: Make use of `_allowMultipleMatches` in `FilteringParserDelegate`
20
(contributed by Lokesh N)
21
+- Make `processor` transient in `JsonParseException` to keep it Serializable
22
23
2.7.3 (16-Mar-2016)
24
src/main/java/com/fasterxml/jackson/core/JsonParseException.java
@@ -13,7 +13,8 @@
13
public class JsonParseException extends JsonProcessingException {
14
private static final long serialVersionUID = 2L; // 2.7
15
16
- protected JsonParser _processor;
+ // since 2.7.4
17
+ protected transient JsonParser _processor;
@Deprecated // since 2.7
public JsonParseException(String msg, JsonLocation loc) {
0 commit comments