Home » Java Programming » Exceptions

At Point X on line 5, which code is necessary to make the code compile? public class ExceptionTest { class TestException extends Exception {} public void runTest() throws TestException {} public void test() /* Point X */ { runTest(); } }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!