try/swallow

by Jon Sagara August 21, 2008 at 10:33 AM

Dear fellow coders,

Please don't ever do this:

private static void SomeFunc()

{

    try

    {

        DoSomething();

        DoSomethingElse();

    }

    catch

    {

        // eat the exception  <-- NO!  BAD CODER!

    }

}

Love,

Jon

Tags: ,

Blog

Comments are closed