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