Android Question ExceptionEx not triggering Application_Error

Creideiki

Active Member
Licensed User
Longtime User
I'm creating an throwing an Exception with ExceptionEx. It's not caught, so it should end up in Starter.Application_Error.
But it doesn't. The App crashes silently without calling Application_Error.

I tried to reproduce the problem with an little test app... but there it works.

Are there any circumstances where Application_Error is not called when I throw an exception?
 

agraham

Expert
Licensed User
Longtime User
Are there any circumstances where Application_Error is not called when I throw an exception?
Only, I think, in cases like an out of memory exception where the app cannot continue to run code. If the same exception is caught in your little test app and not your main app then the structure of the main app might be to blame.
 
Upvote 0
Top