catchExceptions

inline fun <T> Flow<T>.catchExceptions(crossinline block: suspend FlowCollector<T>.(Exception) -> Unit): Flow<T>

Catches exceptions only, rethrowing any throwables

See also

catch