Skip to content

Commit

Permalink
Added serialVersionUID as calculated by serialver.
Browse files Browse the repository at this point in the history
  • Loading branch information
Capstan committed Oct 29, 2019
1 parent 53a1a0e commit 9f490ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
public class URITemplateException
extends Exception
{
private static final long serialVersionUID = 1364504760692651950L;

public URITemplateException(final String message)
{
super(message);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
public final class URITemplateParseException
extends URITemplateException
{
private static final long serialVersionUID = -2320999022193049874L;

private final String originalMessage;
private final int offset;

Expand Down

0 comments on commit 9f490ad

Please sign in to comment.