You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In LoginAPIService and RegistrationAPIService, you use onErrorResumeNext() with a method that always throws an Exception, but never returns an Observable.
In
LoginAPIServiceandRegistrationAPIService, you useonErrorResumeNext()with a method that always throws anException, but never returns anObservable.Isn't it better to just use
doOnError()for that?