public void test_error_0() throws Exception {
String input = "'[&中国-^]'";
DefaultExtJSONParser parser = new DefaultExtJSONParser(input, ParserConfig.getGlobalInstance(), JSON.DEFAULT_PARSER_FEATURE);
InetAddressCodec deser = new InetAddressCodec();
Throwable error = null;
Object value = null;
try {
value = deser.deserialze(parser, null, null);
} catch (Throwable ex) {
error = ex;
}
Assert.assertNotNull(error);