Can't handle RateLimitException #220
-
I exceeded the quota, but when I try to catch the error it crashes. Does anyone have an idea how can I catch this error? `
` Response: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello @daniatitienei, I believe the problem lies in your approach to error handling. Currently, you're catching exceptions during your flow instantiation, but you should instead be catching them at |
Beta Was this translation helpful? Give feedback.
Hello @daniatitienei, I believe the problem lies in your approach to error handling. Currently, you're catching exceptions during your flow instantiation, but you should instead be catching them at
collect
(or by usingcatch
).