Is there a way to transform an error before onErro...
# rx
k
Is there a way to transform an error before onError() is called on my observer? I'm imagining something like
map
, but where
map
will transform a success result before
onComplete(successResult)
is called, this function would transform an error before
onError(error)
is called
g
Or you can just resume error in
onErrorResumeNext
k
looking into this
thank you for the response