added serial version id

This commit is contained in:
Inderjeet Singh 2010-11-01 23:16:03 +00:00
parent ad7bd1f465
commit a224bb1e2b
2 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,8 @@ package com.google.gson;
*/
public final class JsonIOException extends JsonParseException {
private static final long serialVersionUID = 1L;
public JsonIOException(String msg) {
super(msg);
}

View File

@ -24,6 +24,8 @@ package com.google.gson;
*/
public final class JsonSyntaxException extends JsonParseException {
private static final long serialVersionUID = 1L;
public JsonSyntaxException(String msg) {
super(msg);
}