CJCoding With Joseph
15per day

Re-throw Exception After Logging

Write a method parse(String s) that tries to parse s as an integer. If a NumberFormatException occurs:
1. Print "Log: bad input" (simulated logging)
2. Re-throw the same exception using throw e

In main, call parse(input). If parsing succeeds, print the value. If NumberFormatException is caught in main, print "Handled".

⚠️ AUTO-INPUT MODE: The input stream will automatically contain 'xyz\n'.

Expected Output:

Log: bad input
Handled
Topics:
Miscellaneous
📥 Auto-Input:
xyz\n
This input is automatically fed to your program's stdin
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.