I'm starting to put together my error handling framework and have a question around Synchronous & Asynchronous Error Handling.
I've been able to use try{} catch{} blocks for handling synchronous errors and I've also tested asynchronous error handling by adding an event listener to call an error handling method when using the NetConnection class.
What I'm wondering is if it's possible to throw an Error from my asynchronous event error handling method and have a parent method catch it in a try{} catch{} block. I'm assuming it isn't possible since I can't get it to work

I can throw the error from the method and have it print in the output window but I can't catch it!
Thanks,
Tommy