[flexcoders] Re: excetion bubbling to application level?

2007-11-13 Thread ben.clinkinbeard
Nope. --- In flexcoders@yahoogroups.com, aaron smith [EMAIL PROTECTED] wrote: Is there a way to get all exceptions to bubble to the Application level so I can catch all for logging? thanks yo.

Re: [flexcoders] Re: excetion bubbling to application level?

2007-11-13 Thread Daniel Freiman
Application dispatches and ErrorEvent every time an error is thrown anywhere in the Application. This will not allow you to have a global error handler, but it will allow you to do logging. - Dan Freiman On Nov 13, 2007 3:27 PM, ben.clinkinbeard [EMAIL PROTECTED] wrote: Nope. --- In

Re: [flexcoders] Re: excetion bubbling to application level?

2007-11-13 Thread aaron smith
sweet sweet. that's what I was looking for. On Nov 13, 2007 1:16 PM, Daniel Freiman [EMAIL PROTECTED] wrote: Application dispatches and ErrorEvent every time an error is thrown anywhere in the Application. This will not allow you to have a global error handler, but it will allow you to