Fix error message for int64 parse error.
This commit is contained in:
parent
11c902ea2e
commit
58373fa160
1 changed files with 1 additions and 1 deletions
|
@ -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