← Back to Miscellaneous
Question 223
Exception Propagation through Methods
Exception Propagation through Methods
Write two methods: 1.parseValue(String s)— returnsInteger.parseInt(s). LetNumberFormatExceptionpropagate naturally (do not catch it). 2.process(String s)— callsparseValue(s)and returns the result multiplied by 2. Also does NOT catch the exception. Inmain, callprocess(input)and print the result. IfNumberFormatExceptionpropagates all the way up, catch it and print"Parse failed". ⚠️ AUTO-INPUT MODE: The input stream will automatically contain'5\n'.
Expected Output:
10
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.