Uses of Class
com.fasterxml.jackson.core.exc.StreamWriteException
-
Packages that use StreamWriteException Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances.com.fasterxml.jackson.core.exc Package for some ofJsonProcessingException
subtypes contained by streaming API. -
-
Uses of StreamWriteException in com.fasterxml.jackson.core
Subclasses of StreamWriteException in com.fasterxml.jackson.core Modifier and Type Class Description class
JsonGenerationException
Exception type for exceptions during JSON writing, such as trying to output content in wrong context (non-matching end-array or end-object, for example).Methods in com.fasterxml.jackson.core that return StreamWriteException Modifier and Type Method Description protected StreamWriteException
JsonGenerator. _constructWriteException(java.lang.String msg)
protected StreamWriteException
JsonGenerator. _constructWriteException(java.lang.String msg, java.lang.Object arg)
protected StreamWriteException
JsonGenerator. _constructWriteException(java.lang.String msg, java.lang.Object arg1, java.lang.Object arg2)
protected StreamWriteException
JsonGenerator. _constructWriteException(java.lang.String msg, java.lang.Throwable t)
-
Uses of StreamWriteException in com.fasterxml.jackson.core.exc
Methods in com.fasterxml.jackson.core.exc that return StreamWriteException Modifier and Type Method Description abstract StreamWriteException
StreamWriteException. withGenerator(JsonGenerator g)
Fluent method that may be used to assign originatingJsonGenerator
, to be accessed usinggetProcessor()
.
-