source: josm/trunk/resources/org/glassfish/json/messages.properties@ 6756

Last change on this file since 6756 was 6756, checked in by Don-vip, 10 years ago

fix #9590 - replace org.json with GPL-compliant jsonp + remove mention of old world image removed in r1680

File size: 2.5 KB
Line 
1parser.getString.err=JsonParser#getString() is valid only KEY_NAME, VALUE_STRING, VALUE_NUMBER parser states. \
2 But current parser state is {0}
3parser.isIntegralNumber.err=JsonParser#isIntegralNumber() is valid only VALUE_NUMBER parser state. \
4 But current parser state is {0}
5parser.getInt.err=JsonParser#getInt() is valid only VALUE_NUMBER parser state. \
6 But current parser state is {0}
7parser.getLong.err=JsonParser#getLong() is valid only VALUE_NUMBER parser state. \
8 But current parser state is {0}
9parser.getBigDecimal.err=JsonParser#getBigDecimal() is valid only VALUE_NUMBER parser state. \
10 But current parser state is {0}
11parser.expected.eof=Expected EOF token, but got {0}
12parser.tokenizer.close.io=I/O error while closing JSON tokenizer
13parser.invalid.token=Invalid token={0} at {1}. Expected tokens are: {2}
14
15generator.flush.io.err=I/O error while flushing generated JSON
16generator.close.io.err=I/O error while closing JsonGenerator
17generator.write.io.err=I/O error while writing in JsonGenerator
18generator.illegal.method=Illegal method during JSON generation, \
19 not valid in current context {0}
20generator.double.infinite.nan=double value cannot be Infinite or NaN
21generator.incomplete.json=Generating incomplete JSON
22generator.illegal.multiple.text=Cannot generate more than one JSON text
23
24writer.write.already.called=write/writeObject/writeArray/close method is already called
25
26reader.read.already.called=read/readObject/readArray/close method is already called
27reader.expected.array.got.object=Cannot read JSON array, found JSON object
28reader.expected.object.got.array=Cannot read JSON object, found JSON array
29
30objbuilder.name.null=Name in JsonObject's name/value pair cannot be null
31objbuilder.value.null=Value in JsonObject's name/value pair cannot be null
32objbuilder.object.builder.null=Object builder that is used to create a value in JsonObject's name/value pair cannot be null
33objbuilder.array.builder.null=Array builder that is used to create a value in JsonObject's name/value pair cannot be null
34
35arrbuilder.value.null=Cannot invoke add(null) while building JsonArray.
36arrbuilder.object.builder.null=Object builder that is used to add a value to JSON array cannot be null
37arrbuilder.array.builder.null=Array builder that is used to add a value to JSON array cannot be null
38
39tokenizer.unexpected.char=Unexpected char {0} at {1}
40tokenizer.expected.char=Unexpected char {0} at {1}, expecting ''{2}''
41tokenizer.io.err=I/O error while parsing JSON
Note: See TracBrowser for help on using the repository browser.