Reputation: 362
Basic app layout:
I created a sample power app where I just took around 20 text inputs collecting the data from it and sending it to the power automate flow (I am not using data card and form).
Now, I handled the exceptions in the power automate flow as any flow functionality got failed we should get a custom message in power apps; it is successfully working.
But, I am looking for something like,
How could I handle these runtime exceptions?
Upvotes: 0
Views: 1381
Reputation: 981
Basically you can implement error handling on two levels:
To tackle broken connections, check out the Connection() function.
Upvotes: 0