.onErrorResumeNext - you can use this to try to handle it differently, this way you will pass the previously emitted value, which when processing generated an error for another observable, where you can try a different approach. Or handle the error.
.onErrorReturn - If this is normal for you, just return some default value and ignore the error.
Andrej Jurkin
source share