← Back to Miscellaneous
Question 224
Re-throw Exception After Logging
Re-throw Exception After Logging
Write a methodparse(String s)that tries to parsesas an integer. If aNumberFormatExceptionoccurs: 1. Print"Log: bad input"(simulated logging) 2. Re-throw the same exception usingthrow eInmain, callparse(input). If parsing succeeds, print the value. IfNumberFormatExceptionis caught in main, print"Handled". ⚠️ AUTO-INPUT MODE: The input stream will automatically contain'xyz\n'.
Expected Output:
Log: bad input Handled
Topics:
Miscellaneous
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.