Home
last modified time | relevance | path

Searched refs:JsonProcessingException (Results 1 – 25 of 78) sorted by relevance

1234

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonProcessingException.java15 public class JsonProcessingException extends java.io.IOException class
21 protected JsonProcessingException(String msg, JsonLocation loc, Throwable rootCause) { in JsonProcessingException() method in JsonProcessingException
29 protected JsonProcessingException(String msg) { in JsonProcessingException() method in JsonProcessingException
33 protected JsonProcessingException(String msg, JsonLocation loc) { in JsonProcessingException() method in JsonProcessingException
37 protected JsonProcessingException(String msg, Throwable rootCause) { in JsonProcessingException() method in JsonProcessingException
41 protected JsonProcessingException(Throwable rootCause) { in JsonProcessingException() method in JsonProcessingException
DTreeCodec.java13 …abstract <T extends TreeNode> T readTree(JsonParser p) throws IOException, JsonProcessingException; in readTree()
14 …bstract void writeTree(JsonGenerator g, TreeNode tree) throws IOException, JsonProcessingException; in writeTree()
/external/jackson-databind/src/test-jdk14/java/com/fasterxml/jackson/databind/
DRecordTest.java5 import com.fasterxml.jackson.core.JsonProcessingException;
21 public void testSerializeSimpleRecord() throws JsonProcessingException { in testSerializeSimpleRecord()
35 …lic void testSerializeSimpleRecord_DisableAnnotationIntrospector() throws JsonProcessingException { in testSerializeSimpleRecord_DisableAnnotationIntrospector()
58 public void testSerializeRecordOfRecord() throws JsonProcessingException { in testSerializeRecordOfRecord()
69 public void testSerializeJsonIgnoreRecord() throws JsonProcessingException { in testSerializeJsonIgnoreRecord()
92 public void testSerializeJsonRenameRecord() throws JsonProcessingException { in testSerializeJsonRenameRecord()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DPropertyValue.java5 import com.fasterxml.jackson.core.JsonProcessingException;
34 throws IOException, JsonProcessingException; in assign()
60 throws IOException, JsonProcessingException in assign()
89 throws IOException, JsonProcessingException in assign()
113 throws IOException, JsonProcessingException in assign()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/
DTestExceptions.java14 JsonProcessingException exc = new JsonParseException(null, "Foobar", JsonLocation.NA); in testOriginalMesssage()
21 JsonProcessingException exc2 = new JsonProcessingException("Second", in testOriginalMesssage()
28 JsonProcessingException exc3 = new JsonProcessingException(exc); in testOriginalMesssage()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/
DGeneratorFailTest.java9 import com.fasterxml.jackson.core.JsonProcessingException;
64 } catch (JsonProcessingException e) { in _testDupFieldNameWrites()
86 } catch (JsonProcessingException e) { in _testFailOnWritingStringNotFieldName()
107 } catch (JsonProcessingException e) { in _testFailOnWritingFieldNameInRoot()
DGeneratorFailFromReaderTest.java6 import com.fasterxml.jackson.core.JsonProcessingException;
63 } catch (JsonProcessingException e) { in _testFailOnWritingStringNotFieldName()
87 } catch (JsonProcessingException e) { in _testFailOnWritingStringFromReaderWithTooFewCharacters()
109 } catch (JsonProcessingException e) { in _testFailOnWritingStringFromNullReader()
DJsonReadContextTest.java5 import com.fasterxml.jackson.core.JsonProcessingException;
21 …void testSetCurrentNameTwiceWithSameNameRaisesJsonParseException() throws JsonProcessingException { in testSetCurrentNameTwiceWithSameNameRaisesJsonParseException()
29 public void testSetCurrentName() throws JsonProcessingException { in testSetCurrentName()
/external/geojson-jackson/src/test/java/org/geojson/jackson/
DPointTest.java3 import com.fasterxml.jackson.core.JsonProcessingException;
77 public void itShouldSerializeAPointWithAdditionalAttributes() throws JsonProcessingException { in itShouldSerializeAPointWithAdditionalAttributes()
84 …blic void itShouldSerializeAPointWithAdditionalAttributesAndNull() throws JsonProcessingException { in itShouldSerializeAPointWithAdditionalAttributesAndNull()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJsonMappingException.java24 extends JsonProcessingException
255 if (problem instanceof JsonProcessingException) { in JsonMappingException()
256 _location = ((JsonProcessingException) problem).getLocation(); in JsonMappingException()
391 if (src instanceof JsonProcessingException) { in wrapWithPath()
392 Object proc0 = ((JsonProcessingException) src).getProcessor(); in wrapWithPath()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DDisablingCreatorsTest.java5 import com.fasterxml.jackson.core.JsonProcessingException;
50 } catch (JsonProcessingException e) { in testDisabling()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DTestConcurrency.java6 import com.fasterxml.jackson.core.JsonProcessingException;
44 …deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException in deserialize()
DTestBeanDeserializer.java93 throws IOException, JsonProcessingException in deserialize()
168 …eserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JsonProcessingException { in deserialize()
184 …eserialize(JsonParser p, DeserializationContext ctxt) throws IOException, JsonProcessingException { in deserialize()
295 JsonProcessingException {
337 } catch (JsonProcessingException e) {
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/
DMissingNode.java82 throws IOException, JsonProcessingException in serialize()
96 throws IOException, JsonProcessingException in serializeWithType()
DBaseJsonNode.java117 throws IOException, JsonProcessingException; in serialize()
126 throws IOException, JsonProcessingException; in serializeWithType()
/external/jackson-databind/src/test/java/perf/
DManualReadPerfWithUUID.java6 import com.fasterxml.jackson.core.JsonProcessingException;
30 throws IOException, JsonProcessingException in _deserialize()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DJSONWrappedObject.java70 throws IOException, JsonProcessingException in serializeWithType()
78 throws IOException, JsonProcessingException in serialize()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/seq/
DPolyMapWriter827Test.java10 import com.fasterxml.jackson.core.JsonProcessingException;
29 …jsonGenerator, SerializerProvider serializerProvider) throws IOException, JsonProcessingException { in serialize()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/interop/
DTestFormatDetection.java3 import com.fasterxml.jackson.core.JsonProcessingException;
82 } catch (JsonProcessingException e) { in testInvalid()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
DTestJacksonAnnotationIntrospector.java12 import com.fasterxml.jackson.core.JsonProcessingException;
101 throws IOException, JsonProcessingException in serialize()
113 throws IOException, JsonProcessingException in deserialize()
DTestPropertyConflicts.java5 import com.fasterxml.jackson.core.JsonProcessingException;
97 } catch (JsonProcessingException e) { in testFailWithDupProps()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/
DTestJsonSerialize2.java8 import com.fasterxml.jackson.core.JsonProcessingException;
43 throws IOException, JsonProcessingException { in serialize()
51 throws IOException, JsonProcessingException { in serialize()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/
DTestHandlerInstantiation.java79 throws IOException, JsonProcessingException in deserialize()
91 throws IOException, JsonProcessingException in deserializeKey()
107 throws IOException, JsonProcessingException in serialize()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/contextual/
DTestContextualKeyTypes.java8 import com.fasterxml.jackson.core.JsonProcessingException;
68 throws IOException, JsonProcessingException in deserializeKey()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DJsonReadContext.java196 public void setCurrentName(String name) throws JsonProcessingException { in setCurrentName()
201 private void _checkDup(DupDetector dd, String name) throws JsonProcessingException { in _checkDup()

1234