Java Exceptions: exception myException is never thrown in body of corresponding try statement

11,329

Solution 1

The hole is that Function2 declares that it throws the exception, but Function1 does not. Java doesn't dig its way through possible call hierarchies, but goes directly by what you declare in throws statements.

Function1 gets away with not declaring the throw probably because myException is a RuntimeException.

Solution 2

Your problem is that Function1() does not declare that it throws myException - which means that there should be 2 compile errors: one about the exception not being caught or declared, and one about catching the exception that is not declared.

Share:
11,329
aitee
Author by

aitee

Updated on August 03, 2022

Comments

  • aitee
    aitee over 1 year

    I understand the idea of this error. But I guess I don't understand how this works down the call stack.

    File Main.java:

    public static void main(String[] args) {
        try {
             Function1();
          } catch (myException e) {
          System.out.println(e.getMessage());
        }
    }
    public static void Function1() {
        Function2();
    }
    

    Function2 exists in another file:

    File2.java

    public void Function2() throws myException {
         ....
    }
    

    So through several calls (down the call stack) I have Function2 which specifies the requirement "throws myException". How come the main function (where the error is being directed at) doesn't recognize that I throw myException down the line?

    Any guidance in where the 'hole' in my "exception knowledge" lies would be greatly appreciated.

    aitee,