Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8368465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:23:47+00:00 2026-06-09T13:23:47+00:00

I have a UsersController , with OnException (which works), but if I make the

  • 0

I have a UsersController, with OnException (which works), but if I make the Controller inherit from BaseController, the OnException doesn’t work, even if I put it in the BaseController.

Basically I want to have all my controllers inherit from BaseController so I can just have one OnException handler there, which catches everything…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T13:23:49+00:00Added an answer on June 9, 2026 at 1:23 pm

    You don’t need to inherit from a custom base controller class in order to have all controllers handle exceptions the same way. You can do it with an ActionFilter.

    [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, 
        AllowMultiple = true, Inherited = true)]
    public class CustomHandleErrorAttribute : HandleErrorAttribute
    {
        public override void OnException(ExceptionContext context)
        {
            // do custom exception handling here
            // to return View("Error"), you can just do this:
            context.Result = new ViewResult { ViewName = "Error" };
        }
    }
    

    You can apply this to all of the controllers in your library with this Global.asax:

    public static void RegisterGlobalFilters(GlobalFilterCollection filters)
    {
        //filters.Add(new HandleErrorAttribute()); // default MVC setting
        filters.Add(new CustomHandleErrorAttribute());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a controller which has a method called history class UsersController < ApplicationController
I'm new with RoR and I have a controller ( UsersController ) where I
I have the following RSpec example which is passing: describe UsersController do it should
I'm still trying to migrate from CakePHP 1.3 to 2.0 I have a Controller
I have an update method in my users controller that I call from a
i have a controller page like this: class UsersController extends AppController { var $helpers
If one where to have a controller named UsersController with an action like: public
I am trying to make the login work... but when i register (using the
I have controllers that work in context of some model. Example: controllers UsersController and
I have two separate controllers that inherit from Admin::UserBaseController , display a searchable, sortable

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.