I’m writing a plugin that uses OpenAI’s API in a server side action and returns results. I use a try / catch for error handling and most of the time if the request fails I’ll catch the error and return it and I can handle that in my app. However, sometimes it times out and I’m only able to catch that in the app with a generic unhandled error catcher:
It looks like Bubble is just timing this out? Is there a more controlled way to catch this error so that I can handle it specifically?