Home
last modified time | relevance | path

Searched refs:wrapWithPath (Results 1 – 13 of 13) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJsonMappingException.java354 public static JsonMappingException wrapWithPath(Throwable src, Object refFrom, in wrapWithPath() method in JsonMappingException
356 return wrapWithPath(src, new Reference(refFrom, refFieldName)); in wrapWithPath()
367 public static JsonMappingException wrapWithPath(Throwable src, Object refFrom, int index) { in wrapWithPath() method in JsonMappingException
368 return wrapWithPath(src, new Reference(refFrom, index)); in wrapWithPath()
377 public static JsonMappingException wrapWithPath(Throwable src, Reference ref) in wrapWithPath() method in JsonMappingException
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DPrimitiveArrayDeserializers.java404 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
520 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
612 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
690 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
768 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
839 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
909 throw JsonMappingException.wrapWithPath(e, chunk, builder.bufferedSize() + ix); in deserialize()
DStringCollectionDeserializer.java218 throw JsonMappingException.wrapWithPath(e, result, result.size()); in deserialize()
254 throw JsonMappingException.wrapWithPath(e, result, result.size()); in deserializeUsingCustom()
301 throw JsonMappingException.wrapWithPath(e, result, result.size()); in handleNonArray()
DStringArrayDeserializer.java173 throw JsonMappingException.wrapWithPath(e, chunk, buffer.bufferedSize() + ix); in deserialize()
233 throw JsonMappingException.wrapWithPath(e, String.class, ix); in _deserializeCustom()
294 throw JsonMappingException.wrapWithPath(e, chunk, buffer.bufferedSize() + ix); in deserialize()
DEnumSetDeserializer.java241 throw JsonMappingException.wrapWithPath(e, result, result.size()); in _deserialize()
282 throw JsonMappingException.wrapWithPath(e, result, result.size()); in handleNonArray()
DCollectionDeserializer.java328 throw JsonMappingException.wrapWithPath(e, result, result.size()); in _deserializeFromArray()
374 throw JsonMappingException.wrapWithPath(e, Object.class, result.size()); in handleNonArray()
419 throw JsonMappingException.wrapWithPath(e, result, result.size()); in _deserializeWithObjectId()
DObjectArrayDeserializer.java224 throw JsonMappingException.wrapWithPath(e, chunk, buffer.bufferedSize() + ix); in deserialize()
291 throw JsonMappingException.wrapWithPath(e, chunk, buffer.bufferedSize() + ix); in deserialize()
DContainerDeserializerBase.java173 throw JsonMappingException.wrapWithPath(t, ref, in wrapAndThrow()
DFactoryBasedEnumDeserializer.java218 throw JsonMappingException.wrapWithPath(throwOrReturnThrowable(t, ctxt), bean, fieldName); in wrapAndThrow()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DStdSerializer.java316 throw JsonMappingException.wrapWithPath(t, bean, fieldName); in wrapAndThrow()
338 throw JsonMappingException.wrapWithPath(t, bean, index); in wrapAndThrow()
DJsonValueSerializer.java297 throw JsonMappingException.wrapWithPath(t, en, _accessor.getName() + "()"); in _acceptJsonFormatVisitorForEnum()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DBeanPropertyMap.java754 throw JsonMappingException.wrapWithPath(t, bean, fieldName); in wrapAndThrow()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBeanDeserializerBase.java1809 throw JsonMappingException.wrapWithPath(throwOrReturnThrowable(t, ctxt), bean, fieldName); in wrapAndThrow()