I'm new to Rxjava
with Retrofit
and I'm asking for the best right way to handle all possible status in Retrofit using rxjava
and rxbinding
which includes:
- No Internet connection.
- Null response from server.
- Success response.
- Error response and show the error message like
Username or password is incorrect
. - Other errors like
connection reset by peers
.
I'm having exception subclass for each important failure response. Exceptions are delivered as
Observable.error()
, while values are delivered through stream without any wrapping.1) No internet - ConnectionException
2) Null - just NullPointerException
4) Check for "Bad Request" and throw IncorrectLoginPasswordException
5) any other error is just NetworkException
You can map errors with
onErrorResumeNext()
andmap()
For example
Typical retrofit method that fetches data from web service:
Method that assures response is ok, throws appropriate exceptions otherwise
IOException means there is no network connection so I throw ConnectionException
For your login request create new method that will check if login/password are ok.
And at the end there is