public abstract class StreamReadException extends JsonProcessingException
Constructor and Description |
---|
StreamReadException(JsonParser p,
java.lang.String msg) |
StreamReadException(JsonParser p,
java.lang.String msg,
JsonLocation loc) |
StreamReadException(JsonParser p,
java.lang.String msg,
java.lang.Throwable root) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMessage()
Overriding the getMessage() to include the request body
|
JsonParser |
getProcessor()
Method that allows accessing underlying processor that triggered
this exception; typically either
JsonParser or JsonGenerator
for exceptions that originate from streaming API. |
RequestPayload |
getRequestPayload()
Method that may be called to find payload that was being parsed, if
one was specified for parser that threw this Exception.
|
java.lang.String |
getRequestPayloadAsString()
The method returns the String representation of the request payload if
one was specified for parser that threw this Exception.
|
abstract StreamReadException |
withParser(JsonParser p)
Fluent method that may be used to assign originating
JsonParser ,
to be accessed using getProcessor() . |
abstract StreamReadException |
withRequestPayload(RequestPayload p)
Fluent method that may be used to assign payload to this exception,
to let recipient access it for diagnostics purposes.
|
clearLocation, getLocation, getOriginalMessage, toString
public StreamReadException(JsonParser p, java.lang.String msg)
public StreamReadException(JsonParser p, java.lang.String msg, java.lang.Throwable root)
public StreamReadException(JsonParser p, java.lang.String msg, JsonLocation loc)
public abstract StreamReadException withParser(JsonParser p)
JsonParser
,
to be accessed using getProcessor()
.
NOTE: `this` instance is modified and no new instance is constructed.
public abstract StreamReadException withRequestPayload(RequestPayload p)
NOTE: `this` instance is modified and no new instance is constructed.
public JsonParser getProcessor()
JsonProcessingException
JsonParser
or JsonGenerator
for exceptions that originate from streaming API.
Note that it is possible that `null` may be returned if code throwing
exception either has no access to processor; or has not been retrofitted
to set it; this means that caller needs to take care to check for nulls.
Subtypes override this method with co-variant return type, for more
type-safe access.getProcessor
in class JsonProcessingException
public RequestPayload getRequestPayload()
public java.lang.String getRequestPayloadAsString()
public java.lang.String getMessage()
getMessage
in class JsonProcessingException
Copyright © 2010 - 2020 Adobe. All Rights Reserved