vote up 4 vote down star

I recently made the statement to a colleague that:

NullReferenceExceptions should never be explicitly caught

I used the word never.... hmmm. I've never seen a appropriate use case myself for catching them but I wanted to check if anyone else has?

Never is such a strong word after all.....

flag

68% accept rate

6 Answers

vote up 6 vote down check

It depends on why; see Eric Lippert's blog entry. If they are "boneheaded exceptions", then no - just fix the calling code. In the rare case that they are "vexing exceptions" (i.e. the code you are calling has traps that are hard to avoid), then I guess you'd have to.

link|flag
great article, thanks. – Quibblesome Feb 25 at 10:42
Thanks for the great article link – Joakim Karlsson Mar 26 at 12:23
vote up 4 vote down

Well, when you call into a buggy third party library which ocasionnaly causes nullrefs, it's probably a good idea to catch them if you know how to properly deal with them.

Real-life example : In the past, I've used quite extensively a datagrid provided by a third party editor. They have (or had at this time) a confirmed bug which whould throw a nullref (nested deep in their call stack) from time to times when updating some data in the underlying data source.

I've dealt with the situation with this code :

            try
            {
                // do the update
            }
            catch (NullReferenceException)
            {
                try
                {
                    // redo the update
                }
                catch (NullReferenceException ex)
                {
                    // properly log the third party lib failure
                }
            }

Btw, my "log" code has never executed in 2 years:) Now the third party editor has fixed the issue, and I should probably remove this code.

link|flag
vote up 0 vote down

I wouldn't say never. For instance you could catch it to log the exception or to marshal it from one thread to another. In both cases the exception should be throw again.

As Marc Gravell points out Eric Lippert has a very good entry on his blog about exceptions.

link|flag
Aye but in this case you'll be catching Exception as opposed to explicitly catching NullReferenceException – Quibblesome Feb 25 at 10:45
I was just reading your post again when I noticed "explicitly". Given that I would tend to go with "never" or at least "never, unless you have a very good reason and know exactly what you're doing". – Brian Rasmussen Feb 25 at 10:48
vote up 3 vote down

Maybe the correct quote is

NullReferenceExceptions should never be explicitly caught if you own the code which thrown the Exception

link|flag
oOo now that is a much better summary than mine. – Quibblesome Feb 25 at 10:45
vote up 0 vote down

I once had to build a big string based on the values of 15 or so variables. Instead of checking each one for nullness, I simply went on and created the string, dereferencing the variables, and catching the NRE. To be honest it felt bad and naughty, but it saved me from writing a lot of code.

link|flag
you should NEVER do that :p – Brann Feb 26 at 9:56
vote up 1 vote down

You're right, "never" is a strong word.

Catching a NullReferenceException (or an NPE for Java), will always depend on the purpose of the code.

For instance, if your application REQUIRES that processing continue even with potentially uncertain state (think life support systems) or if your code doesn't care about the state of the referenced object (ex: batch processing data that throws out, literally, bad data).

It's a good rule of thumb to not catch these types of exceptions, but not a law.

link|flag
Aye but in these cases you would catch the base Exception type not a NullReferenceException explicitly (apologies for my pedantry). – Quibblesome Feb 25 at 14:25
Ok, but caught none-the-less... :) – Bill Feb 25 at 14:37

Your Answer

Get an OpenID
or

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