Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

HI, I have one global generic exception handler(catch ex as Exception) for all unhandled exceptions from application. But in debug mode(app runs from VS) I don`t want that exceptions go to this global handler. Better for me is when VS stops app on place when exception occurs.

How can I do this, or is there some better approach for this?

thanks

share|improve this question

2 Answers

up vote 3 down vote accepted

finally I found solution:

    Try
    ......
#If DEBUG Then
    Catch ex As Exception When False
#Else
    Catch ex As Exception 
#End If
    ......
    End Try

ps: thanks to JYelton for hint.

edit:simplified solution

share|improve this answer

You could use a preprocessor directive (this example is C#):

#if DEBUG
// omit exception handling (or use a different one)
#else
// exception handling event subscriber here
#endif
share|improve this answer
good idea but I don`t want to do this: #if DEBUG ...a lot of code... #else try ...a lot of code... catch ex as Exception end try #endif ,because of repeating code. Are there some other approaches? – Cicik May 29 '10 at 22:07
You could set some variable inside of the #if DEBUG and use that to further differentiate between what to do (or not) in debug mode. It sounds like you want to handle exceptions differently in multiple places based on this comment, rather than just a global handler. – JYelton May 30 '10 at 5:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.