โ Back to Exceptions
Question 651
Rethrow With Nested Try
Rethrow With Nested Try
Read an integern. Use a nestedtry/catch. In the inner try: ifn == 0, throw anInvalidOperationException; otherwise printOK: <n>. The inner catch printsinnerand then rethrows the same exception withthrow;. The outer catch printsouter. Use top-level statements. Input5prints: OK: 5 Input0prints: inner outer
Expected Output:
OK: 5
Topics:
Exceptions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.