Blog_Banner_Asset
    Homebreadcumb forward arrow iconBlogbreadcumb forward arrow iconFull Stack Developmentbreadcumb forward arrow iconException Handling In MVC [Top 2 Methods To Handle Exception]

Exception Handling In MVC [Top 2 Methods To Handle Exception]

Last updated:
29th Dec, 2020
Views
Read Time
7 Mins
share image icon
In this article
Chevron in toc
View All
Exception Handling In MVC [Top 2 Methods To Handle Exception]

Exception handling in MVC is majorly used when creating line-of-business applications that require particular specifications and conditions and have unique requirements. 

Let’s understand what exception handling is in-depth and how it helps you with your applications. 

Check out our free courses to get an edge over the competition

What Is Exception Handling?

It is the process of handling and responding to exceptional conditions that occur and require specific methods; this needs to be incorporated in business applications to enhance the outcome and ensure that all requirements are properly handled. 

Ads of upGrad blog

There are two significant ways in which these exceptions are handled

  • The catch and block method
  • The application error handling method.

However, these are not the only methods used for the process. 

Here, we will discuss the different steps and techniques you can use to manage exceptions in MVC.  

Check out upGrad’s Advanced Certification in Blockchain

Explore Our Software Development Free Courses

The Try-Catch Handling Method

The catch and block method is considered the traditional method used for exception handling in MVC based applications. You will be logging the error information using this method.

Try 

{ add an exception;}

catch (exception name)

{

return View (“Error”);

}

You enter the exception condition in the try blog and add the exception name for the catch block. When the exception is caught in the catch block, it will return the error that it mentions.

This can also be used to handle and log all the errors within the application.

Check out upGrad’s Advanced Certification in DevOps 

Explore our Popular Software Engineering Courses

OnException Method 

This method allows you to override the OnException method within the controller class. The error code 500 is used to handle all the logged errors resulting from the exception handling in MVC.

Basically, you can log and specify the exception’s view with this method without the try loop. You need not enable the <customErrors> config in the web.config to get started with this method. 

public class HomeController: Controller

{

    public ActionResult Contact()

    {

        string msg = null;

        ViewBag.Message = msg.Length;     

        return View();

    }

    protected override void OnException(ExceptionContext filterContext)

    {

        filterContext.ExceptionHandled = true;

        //Log the error!!

        //Redirect to action

        filterContext.Result = RedirectToAction(“Error”, “InternalError”);

        // OR return specific view

        filterContext.Result = new ViewResult

        {

            ViewName = “~/Views/Error/InternalError.cshtml”

        };

   }

}

Take a look at the code above, and you will notice that OnException is a void method, and it takes the object ExceptionContext as the argument.

This argument contains all the information required to log the error. If you set ExceptionHandled=true, then you will be able to log the actions generated from a particular controller with ease.

In-Demand Software Development Skills

HandleError Attribute

This is yet another popular method of handling the exception and managing errors within the MVC of your application. If you notice errors created by an action method or a controller, you should use this method.

With this attribute, you can select to display a custom view for the particular exception. This could occur either in the action method or the controller.

Again, this method is also used when you are managing errors with code 500. You cannot log exceptions using this method.

There is a particular way to add this attribute for it to work at your behest. You should add the HandleError attribute filter inside the FilterConfig.RegisterGlobalFilters() method.

Along with this, you should ensure that the <CustomErrors mode = “on”> custom errors mode is always set to on within the web.config. At this point, you can add the attribute to the active mode. 

public class HomeController: Controller

{

    [HandleError]

    public ActionResult Contact()

    {

        string msg = null;

        ViewBag.Message = msg.Length; 

        return View();

    }

}

The code we just mentioned works best for the context and exception handling needs.

Here the attribute is configured for the Contact() action method. When the process is compiled, you will see the Error.cshtml displayed in the view mode. 

This will occur only when an exception occurs. This is the default view in all exceptional cases. You can also use this attribute to configure the various pages to manage the different types of exceptions. 

While this attribute works perfectly for error handling and manages all types of configurations, it may not work everywhere. Choose it for some instances where you believe it will help your application. 

The method does not support the logging exceptions. It manages to capture only HTTP exceptions within code 500. It cannot capture the exceptions from other controllers. So, it is not an attribute that you can consider for all occasions and needs.

Read our Popular Articles related to Software Development

Inheriting From HandleError

You can even use this method to handle exceptions. The above method that we discussed doesn’t allow you to reuse the components, which can be considered a drawback. 

You cannot function if you have to keep coding for all the exceptions that need to be logged. 

As a result, you will have to use this extension. It allows you to inherit from the HandleError attribute, and use it across the specific controller. As a result, you can handle exceptions without having to code too often. 

Also Read: Exception Handling Interview Questions

Application_Error Event 

Application_Error Event is yet another method of handling the Application error and managing the exceptions. This part requires you to control the Application_Error event within the global.asax file. 

You can trigger this event for all types of error codes and exception handling in MVC, making it easier to use and one of the best methods to handle exceptions.

This uses the primary error logging method, which can be used to manage all exceptions that are not handled within the application. 

upGrad’s Exclusive Software Development Webinar for you –

SAAS Business – What is So Different?

 

Managing HTTP Errors

The method mentioned here cannot handle any of the HTTP exceptions. We are talking about exceptions such as “File Not Found” and other such common error messages that you are bound to get.

You will need to enter the error details and the error code within the syntax to manage these exceptions. 

You will need to note all the possible error codes and messages that you are likely to get as part of the application before you release the syntax.

To enhance your knowledge of line-of-business applications, and gain proficiency in programming languages, join upGrad.

With an array of courses and a range of career options, you will augment your career opportunities. 

Connect with our experts or book a call with us to know more about the options personalized for you.

Enroll in Software Engineering Courses from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.

Conclusion 

When dealing with exception handling in MVC, you need to make sure that the method you are opting for allows you to record all the possible errors. You should be able to reuse the components and manage all application errors. Learn about exception handling in Java.

If you want a single method to handle all possible exceptions, you should opt for the Global Application_Error method. It makes sure to log all errors along with the <CustomErrors> and ensures that they are recorded on the Web.Config.

Ads of upGrad blog

With this method, the user is redirected to the specific pages when they encounter the error. Exception handling is one of the core concepts of application development using ASP.Net MVC. 

We hope this article was insightful to learn about Exception Handling in MVC; please explore our blogs to know more about different applications.

If you’re interested to learn more about full-stack development, check out upGrad & IIIT-B’s Executive PG Program in Full-stack Software Development which is designed for working professionals and offers 500+ hours of rigorous training, 9+ projects, and assignments, IIIT-B Alumni status, practical hands-on capstone projects & job assistance with top firms.

Profile

Rohan Vats

Blog Author
Software Engineering Manager @ upGrad. Passionate about building large scale web apps with delightful experiences. In pursuit of transforming engineers into leaders.

Frequently Asked Questions (FAQs)

1Q. What are the benefits of MVC?

MVC separates an application into three parts- Model, View, and Controller. How the data is shaped and what the business logic is, is represented by the Model, which helps in maintaining and preserving the application data. View is a user interface, enabling the user to modify data in the application. The user requests are handled by the Controller. MVC gives multiple view support and better control, provides change accommodation, and separates the different concerns of the application like UI, business logic, or data.

2Q. What is the best way of handling application errors?

There are different potential methods of handling errors in applications. Some of them are Web.Config customErrors, Controller.OnException method, and the MVC HandleErrorAttribute. Generally, one needs a combination of these methods to properly handle the errors as they have their own advantages and disadvantages. Having a user-friendly error page and being able to monitor them is important to have a better grasp of managing the errors.

3Q. What is the MVC application cycle?

The application life cycle of MVC includes two primary phases, which are: creating the request object, and sending response to the browser. There are usually 4 steps in creating a request object. These include filling route, fetching route, requesting the context created, and controlling the instance created. It’s execution steps like that of any other web application. The first step is to understand the request, and then, the second step involves sending out an appropriate response depending on the type of request.

Explore Free Courses

Suggested Blogs

Full Stack Developer Salary in India in 2024 [For Freshers &#038; Experienced]
907173
Wondering what is the range of Full Stack Developer salary in India? Choosing a career in the tech sector can be tricky. You wouldn’t want to choose
Read More

by Rohan Vats

15 Jul 2024

SQL Developer Salary in India 2024 [For Freshers &#038; Experienced]
902296
They use high-traffic websites for banks and IRCTC without realizing that thousands of queries raised simultaneously from different locations are hand
Read More

by Rohan Vats

15 Jul 2024

Library Management System Project in Java [Comprehensive Guide]
46958
Library Management Systems are a great way to monitor books, add them, update information in it, search for the suitable one, issue it, and return it
Read More

by Rohan Vats

15 Jul 2024

Bitwise Operators in C [With Coding Examples]
51783
Introduction Operators are essential components of every programming language. They are the symbols that are used to achieve certain logical, mathema
Read More

by Rohan Vats

15 Jul 2024

ReactJS Developer Salary in India in 2024 [For Freshers &#038; Experienced]
902674
Hey! So you want to become a React.JS Developer?  The world has seen an enormous rise in the growth of frontend web technologies, which includes web a
Read More

by Rohan Vats

15 Jul 2024

Password Validation in JavaScript [Step by Step Setup Explained]
48976
Any website that supports authentication and authorization always asks for a username and password through login. If not so, the user needs to registe
Read More

by Rohan Vats

13 Jul 2024

Memory Allocation in Java: Everything You Need To Know in 2024-25
74112
Starting with Java development, it’s essential to understand memory allocation in Java for optimizing application performance and ensuring effic
Read More

by Rohan Vats

12 Jul 2024

Selenium Projects with Eclipse Samples in 2024
43493
Selenium is among the prominent technologies in the automation section of web testing. By using Selenium properly, you can make your testing process q
Read More

by Rohan Vats

10 Jul 2024

Top 10 Skills to Become a Full-Stack Developer in 2024
229999
In the modern world, if we talk about professional versatility, there’s no one better than a Full Stack Developer to represent the term “versatile.” W
Read More

by Rohan Vats

10 Jul 2024

Schedule 1:1 free counsellingTalk to Career Expert
icon
footer sticky close icon