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 3279402
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:35:19+00:00 2026-05-17T19:35:19+00:00

I analyzed the code I am working on using a Java source code analyzer.

  • 0

I analyzed the code I am working on using a Java source code analyzer. One of the warnings is “Always declare user defined exceptions as final”. There are many other warnings that doesn’t make much sense but this one made me a little bit confused.

I am working on a framework and I have one root generic exception (say FrameworkGenericException) and for other exceptions I am simply deriving them from the root exception. So I have a hierarchy of exceptions for the framework. I might extend the hierarchy but this warning I think tells me not to have such hierarchy but define them individually. So what which way should I go, what are your comments?

  • 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-05-17T19:35:19+00:00Added an answer on May 17, 2026 at 7:35 pm

    This is probably standard practice to them: declare classes as final if they are not supposed to be inherited from, and also they probably think that all of your exceptions won’t be extended from.

    However, in your case I think that it is a good thing to make one generic exception and extend all others from it. Say, you have:

    public void frameworkMethod() throws IllegalDataException, InvalidCommandException;
    

    where these exceptions are sublasses of FrameworkException. Then you could handle exceptions a little bit easier.

    try {
        frameworkMethod();
    } catch (FrameworkException ex) {
        logger.log(Level.SEVERE, "An exception occured!", ex);
    
        if (ex instanceof IllegalDataException) {
            // Do something to recover
        } else if (ex instanceof InvalidCommandException) {
            //Inform the user
        } //And so on...
    }
    

    So I’d say, you’re doing the right thing, the architecture of your program will be easier to work with.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am interested in writing static code analyzer for vb.net to see if it
I'm working on a project with many unknowns like moving the app from one
How can I count operations in C++? I'd like to analyze code in a
I use checkstyle to analyze my code. A useful rule is PackageHtml, that checks,
I want to analyze an SQL Server stored procedure from .NET code to retrieve
For homework, I was given the following 8 code fragments to analyze and give
I know people complain usually about scripts not working, but here is a case
I'm working on a C++ project where modules are meant to be combined in
C++. Its may be more question of debugging in Visual Studio and working with
Doug McCune had created something that was exactly what I needed ( http://dougmccune.com/blog/2007/05/10/analyze-your-actionscript-code-with-this-apollo-app/ )

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.