Skip to content

Commit 4ca60d2

Browse files
committed
Add serialVersionUID to JsonPointerException.
Fixes #17.
1 parent 373813d commit 4ca60d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/github/fge/jackson/jsonpointer/JsonPointerException.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
public final class JsonPointerException
2323
extends Exception
2424
{
25+
private static final long serialVersionUID = -7592494060626167998L;
26+
2527
public JsonPointerException(final String message)
2628
{
2729
super(message);

0 commit comments

Comments
 (0)