Merge pull request #2930 from anuraaga/dev_rag

Fix error message for int64 parse failure.
This commit is contained in:
Adam Cozzette 2017-04-04 09:31:14 -07:00 committed by GitHub
commit 37c7b766b3
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View file

@ -84,6 +84,8 @@ src/**/*.trs
java/core/target
java/util/target
javanano/target
java/.idea
java/**/*.iml
# Windows native output.
cmake/build

View file

@ -1536,7 +1536,7 @@ public class JsonFormat {
BigDecimal value = new BigDecimal(json.getAsString());
return value.longValueExact();
} catch (Exception e) {
throw new InvalidProtocolBufferException("Not an int32 value: " + json);
throw new InvalidProtocolBufferException("Not an int64 value: " + json);
}
}