Effect.catchAll
Error Handling
全てのExpected Errors (effect)を捕捉してErrorを解消する
Defectは捕捉できない
補足したい場合は、Effect.catchAllCauseを使う
https://effect.website/docs/error-management/expected-errors/#catchall
例
code:ts
Effect.catchAll((error) =>
Effect.succeed(Recovering from ${error._tag})
)