Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • I come from .NET so pardon my knowledge of Java, but I have personally experienced catching exceptions in .NET causing insane delays (magnitude of seconds) which were fixed by removing "catching-exception code".. Commented Nov 4, 2011 at 15:21
  • @Pacerier, seriously? magnitude of seconds? I guess maybe it was catching lots of exceptions? Then I could see that. Commented Nov 4, 2011 at 18:48
  • 3
    @Pacerier: If exceptions are causing insane delays, clearly what's causing them isn't exceptional, and therefore should be handled in other ways. No system should take seconds to process an exception, and I think Microsoft's sufficiently competent to avoid that. Commented Nov 4, 2011 at 19:20