CJCoding With Joseph

Filter With a when Clause

Read an integer code, then throw new InvalidOperationException(code.ToString()). Using an exception filter (catch ... when (...)), print Not Found only when the exception message is 404; otherwise a second catch prints Other error. Use top-level statements with try/catch.

Input 404 prints: Not Found
Input 500 prints: Other error

Expected Output:

Not Found
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
404\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 (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.