Merge pull request #2930 from anuraaga/dev_rag
Fix error message for int64 parse failure.
This commit is contained in:
commit
37c7b766b3
2 changed files with 3 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -84,6 +84,8 @@ src/**/*.trs
|
|||
java/core/target
|
||||
java/util/target
|
||||
javanano/target
|
||||
java/.idea
|
||||
java/**/*.iml
|
||||
|
||||
# Windows native output.
|
||||
cmake/build
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue