Reputation: 7283
is there any way to catch any error within Flex application and send it via let's say email or record it somehow (this emailing or recording part is not the problem, just error catching for whole application is).
This would be very useful, for fining any bugs that clients get while using app, and which they don't send in as notice.
Thanx Ladislav
Upvotes: 0
Views: 473
Reputation: 8756
You'll probably want to look at this SO post about how to catch exceptions in Flex. It seems to have ended on an unsure note, but at the very least you can catch all the uncaught exceptions in a top-level handler and send a notification from there.
Upvotes: 1