In a Windows Application I have, I am doing some changes in registry like deleting a particular key, in some test scenarios like in a Vista machine with its UAC put on, I'm getting System.UnauthorizedAccessException. My code would look something like this:

try
{
    //delete registry keys
}
catch (UnauthorizedAccessException ex)
{
    //handling
}
catch (Exception genEx)
{
    //handling
}

But the application would still go crashing., not being handled by the catch block. Is there some way I could handle it?

link|improve this question

68% accept rate
Are you sure the code that is causing your application to crash is in the try statement? – M.Babcock Dec 23 '11 at 15:09
You must be able to catch this exception. Maybe you could give us more code (I mean at least the call that throws the exception) to help fix it. – ken2k Dec 23 '11 at 15:13
Sorry guys. It was a mistake from my side. I did logging to a location I did not have access, in catch block also I had the logging. Once again sorry and moreover thanks. – Niranjan Dec 23 '11 at 15:32
I have a similar issue on first catch I "throw ex;" But then it reaches general Exeption(the second one,genEx) and says Unhandled UnauthorizedAccessException. It is a base of my domain service classes.The Session is dead but what I want to do is learning is session dead? – Davut Gürbüz May 4 at 12:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.