Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / programming / exceptions

Getting Exact Location of Exception in C# Code

4.60/5 (9 votes)
2 Feb 2014CPOL2 min read 46.4K  
How to get exact location of exception in C# code

Introduction

This post is about locating the exact location of the Exception in the code. There is always a problem for the developer to locate the exact location from where Exception was raised, because of that, it is difficult for the developer what actually went wrong. Most of the time, problem occurs when there are too many libraries referenced, i.e., used in project.

To understand, let’s consider the below example: In the following example, the application is divided in three layers.

  1. Font end - Layer though which user interacts with application and displays data to end user of application.
  2. Business - Layer which has the business logic, code to call datalayer and the info classes which transport between font and data layer.
  3. Data - Layer which interacts with database and supplies data to business layer.

Front Layer Code

C#
class Program
    {
        //Program p = new Program();

        public int i = 10;
        public static void Main(string[] args)
        {
            try
            {
                (new BusinessEmployee()).GetEmployeeList();
            }
            catch (Exception ex)
            {
                global::System.Windows.Forms.MessageBox.Show(ex.Message);
            }
        }
    }

As you see in the above code Font layer is calling “GetEmployeeList” method to get list of all employee.

BusinessLayer Code

C#
public class BusinessEmployee
{
    private readonly DataEmployee dataEmployee;

    public BusinessEmployee()
    {
        dataEmployee = new DataEmployee();
    }

    //Business layer class for employee
    public  void GetEmployeeList()
    {
        dataEmployee.GetEmployeeList();
    }
}

In this layer, the Business class is calling DataLayer to get employee list from the database.

DataLayer Code

C#
public class DataEmployee
{
    //Data layer class for employee
    public  void GetEmployeeList()
    {
        throw new Exception("Not able to fetch employee");
    }
}

This layer returns employee list, but for the example, it's returning exception.

Now if you run the above code by putting it into the respected layer, then when exception is thrown by the actual code, debugger breaks execution in the front layer code. The below image shows the same thing.

So it becomes difficult for the developer what went wrong if there is actual complex code.

Solution

In Visual Studio, there is an option as given in the below image that allows to break debugging at the point, i.e., at the code from where exception is coming.

Once you clicked on menu option, it will open up dialog box where you can mark tick on “Common Language Runtime Exception” as in the below image and click ok.

Now if you run the same code, then the debugger will stop at the exact location from where exception is coming, you can also see the below image.

So breaking at exact location from where error is coming, you can find out which part is actually causing the problem and help to resolve the error easily.

Conclusion

Visual Studio option to locate exception is also very helpful when there are multiple threads doing operation and throws exception. Also locate exceptions dialog provides other option that are also helpful when you are using JavaScript, com component, etc. that you can try by yourself.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)