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

  • Home
  • SEARCH
  • 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 767505
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:02:08+00:00 2026-05-14T18:02:08+00:00

I have an Exception chain in which method1 throws an Exception to method2 which

  • 0

I have an Exception chain in which method1 throws an Exception to method2 which throws the Exception on to main. For some reason, the compiler forces me to deal with the error in method2 and marks it as an error if I don’t, indicating that it’s a checked Exception. But when the same Exception is thrown further down the line to main, the compiler allows me to ignore it and doesn’t display any errors.

The original Exception in method1 is a ParseException, which is checked. But the method has a generic throws Exception clause in the header, and the same object is thrown to method2, which has an identical throws Exception clause. When and how does this Exception lose the status of being checked / caught by the compiler?

Edited to clarify:

public void method1() throws Exception{
   // code that may generate ParseException
}

public void method2() throws Exception{
   method1(); //compiler error (if the throws clause is left out)
}

public static void main(String[] args){
   method2(); //ignored by compiler, even though the exception isn't caught or thrown or handled at all
}

Edit:
Sorry everyone, the question was based on a mistake… The main method actually had a throws Exception clause that I was missing. I’ve removed that and the code is now behaving as expected. Thanks for all the help!

  • 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-14T18:02:09+00:00Added an answer on May 14, 2026 at 6:02 pm

    Whether an exception is checked or not is entirely dependent on what kind of exception it is: If it’s a RuntimeException or a subclass of it, it’s not checked; otherwise, it is. (And yes, RuntimeException is a subclass of Exception — one of the failures of the Java library design, but not the most major.)

    What the compiler checks is the method signatures. So the actual exception thrown is irrelevant (for this purpose). If the methods say throws Exception then you have to catch Exception in your method or declare that the method throws Exception. Methods should always use the narrowest possible throws clause — e.g., not throws Exception but throws ParseException.

    (I say “irrelevant (for this purpose)” because, of course, one of the other things the compiler will do is check that you don’t throw checked exceptions that aren’t covered by your throws clause.)

    Edit The code you added in your edit won’t compile: 1. It’s calling an instance method without an instance, and 2. main needs to declare that it throws Exception.

    This code solves the other problems, and (correctly) demonstrates that main needs the throws Exception clause:

    public class CheckTest
    {
        public static final void main(String[] params)
        {
            new CheckTest().method2();
        }
    
        public void method1() throws Exception{
            throw new java.text.ParseException("foo", 2);
        }
    
        public void method2() throws Exception{
            this.method1();
        }
    }
    

    Result:

    CheckTest.java:27: unreported exception java.lang.Exception; must be caught or declared to be thrown
    
                    new CheckTest().method2();
                                           ^
    1 error
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 379k
  • Answers 379k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You will have to open the index without overwriting thus:… May 14, 2026 at 9:30 pm
  • Editorial Team
    Editorial Team added an answer Very recent versions of gnuplot seem to do exactly what… May 14, 2026 at 9:30 pm
  • Editorial Team
    Editorial Team added an answer Could it be a problem with relative links? I'm yet… May 14, 2026 at 9:30 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.