Re-throwing exceptions - the right way

Signs

In the company where I work we have an interview question for candidates where we ask them to explain the difference between different ways to re-throw an exception in a C# try-catch expression. How hard can it be? Well, surprisingly many developers get it wrong.

The questions looks something like this:

In the code for MyBrokenFunction below, three different ways to re-throw an exception are shown. Explain the difference between the three different options, what we’ll see in the catch section in the Main function, and which one is the best to use.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using System.Diagnostics;

namespace ThrowErrorExample
{
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                MyImportantFunction();
            }
            catch (Exception e)
            {
                // Log error or something
                Debugger.Break();
            }
        }

        static void MyImportantFunction()
        {
            try
            {
                var value = Divide(10, 0);
            }
            catch (Exception ex)
            {
                // Log exception or something

                // Option 1
                throw ex;

                // Option 2
                throw;

                // Option 3
                throw new Exception("Failed to do something important", ex);
            }
        }

        static double Divide(int a, int b)
        {
            return a / b;
        }
    }
}

Do you know which one you would choose? Well, let’s go through the different options one by one.

Option 1

In this example we re-throw the same exception object that is passed in into the catch clause.

1
2
3
4
5
6
7
8
9
try
{
    var value = Divide(10, 0);
}
catch (Exception ex)
{
    // Log exception or something
    throw ex;
}

It looks straight forward, but it has a major drawback. Re-throwing the same exception object resets the stack trace so we won’t be able to see the original error.

at ThrowErrorExample.Program.MyImportantFunction() in C:\Users\me\ThrowErrorExample\Program.cs:line 32
at ThrowErrorExample.Program.Main(String[] args) in C:\Users\me\ThrowErrorExample\Program.cs:line 12

By looking at the StackTrace, it looks like the exception started on line 32 and we have no information about earlier problems. The error message is “Attempted to divide by zero” which is absolutely correct, but the message is somewhat confusing since we have no direct code that is making any divisions.

This example is quite easy, but if you have a complex hierarchy with many layers of code, then you might have lost valuable information about where the problem was caused.

Option 2

In the second example we simply throw without specifying what we throw.

1
2
3
4
5
6
7
8
9
try
{
    var value = Divide(10, 0);
}
catch (Exception ex)
{
    // Log exception or something
    throw;
}

The result in the stack trace is different from the previous one and we see no references at all to line 32 where the throw statement is.

at ThrowErrorExample.Program.Divide(Int32 a, Int32 b) in C:\Users\me\ThrowErrorExample\Program.cs:line 44
at ThrowErrorExample.Program.MyImportantFunction() in C:\Users\me\ThrowErrorExample\Program.cs:line 25
at ThrowErrorExample.Program.Main(String[] args) in C:\Users\me\ThrowErrorExample\Program.cs:line 12

Instead we see the full stack trace back to the line where the original problem occurred. As in the previous option, the error message is “Attempted to divide by zero”, and here it makes more sense if we also look at the stack trace.

Option 3

The final option is that we wrap the exception in a new exception, maybe a domain specific version that contains more information about the problem.

1
2
3
4
5
6
7
8
9
try
{
    var value = Divide(10, 0);
}
catch (Exception ex)
{
    // Log exception or something
    throw new Exception("Failed to do something important", ex);
}

The stack trace in the caught exception will the look like

at ThrowErrorExample.Program.MyImportantFunction() in C:\Users\me\ThrowErrorExample\Program.cs:line 38
at ThrowErrorExample.Program.Main(String[] args) in C:\Users\me\ThrowErrorExample\Program.cs:line 12

We have no information here about the original exception, the same problem as we had for option 1, but this time we have an inner exception as well with its own stack trace.

at ThrowErrorExample.Program.Divide(Int32 a, Int32 b) in C:\Users\me\ThrowErrorExample\Program.cs:line 44
at ThrowErrorExample.Program.MyImportantFunction() in C:\Users\me\ThrowErrorExample\Program.cs:line 25

This inner exception points us all the way back to the original exception source.

The first exception had the message specified when we created the new exception, but the inner exception had the original message

Conclusions

Looking at the examples above, it’s quite clear that option 2 is the preferred choice and option 1 should be avoided. Option 2 is also the default expression when you use the existing code snippets in Visual Studio.

Most developers we interviewed picked option 1 as their primary choice and option 2 as their second. If it’s something I’ve learned from these interviews then it’s that guessing based upon logic won’t always take you in the right direction.

Load Comments?