Is there any way to propagate a `JsonProcessingExc...
# micronaut
d
Is there any way to propagate a
JsonProcessingException
originating in the HTTP client all the way through to an
ExceptionHandler
? It looks like the
CodecException
just gets lost in
FullNettyClientHttpResponse.convertByteBuf
... if I write a replacement
JsonMediaTypeCodec
to throw the
JsonProcessingException
itself, the exception just ends up getting lost at the end of
DefaultChannelPipeline.TailContext
(
onUnhandledInboundException
)