Is there a way in Windows Mobile to catch global unhandled exceptions? If not, are there any workarounds? Specifically, we have a thin client app and we want to globally catch exceptions generated when the network is unavailable (so we can present a friendly message and prompt the user to try again).
This catch statement doesn't fire when I throw an exception on button press
try
{
Application.Run(new Login());
}
catch (Exception ex)
{
Debug.WriteLine("Caught " + ex);
}