CatchErrorOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
catchError<
E> (ErrorHandler< T, E> handler) → Observable<T> -
Catches errors of type
E
thrown by this Observable and handles them by either returning a new Observable of typeT
, throwing the same or a different error, or returningnull
to complete the Observable.