Since ELMAH logs UNHANDLED exceptions and I want to log all errors via ELMAH, does that mean I should not be using try-catch block anymore anywhere on my code? If I do not use it, it will show the yellow screen of death, which I believe I can be handled through the custom error pages.
So, I think try-catch block will be useless if you use ELMAH, am I right? If not, what are the use cases of using try catch with ELMAH?