CatchErrorOperator<T> extension

on

Methods

catchError<E>(ErrorHandler<T, E> handler) Observable<T>

Available on Observable<T>, provided by the CatchErrorOperator extension

Catches errors of type E thrown by this Observable and handles them by either returning a new Observable of type T, throwing the same or a different error, or returning null to complete the Observable.