catchAll<E2, R2> method

Effect<A, E2, R2> catchAll<E2, R2>(
  1. Effect<A, E2, R2> f(
    1. E
    )
)

Catches and recovers from errors

Implementation

Effect<A, E2, R2> catchAll<E2, R2>(
  Effect<A, E2, R2> Function(E) f,
) => _CatchAll(this, f);