The one time I've seen this before, I was working with a library which also defined Exception and the usings I had meant that the actual Catch was referring to a different "Exception" type (if it had been fully qualified it was Company.Lib.Exception but it wasnt because of the using) so when it came to catching a normal exception that was being thrown (some kind of argument exception if I remember correctly) it just wouldn't catch it because the type didn't match.

So in summary, is there another Exception type in a different namespace that is in a using in that class?

EDIT: A quick way to check this is make sure in you catch you fully qualify the Exception type as "System.Exception" and give it a whirl!