โ Back to Exceptions
Question 647
Throw ArgumentException On Empty Name
Throw ArgumentException On Empty Name
Read a name from input. If it is empty,throw new ArgumentException("empty"); otherwise printHello, <name>. Catch the exception and printError: <message>usingex.Message. Use top-level statements withtry/catch. InputAliceprints: Hello, Alice Input (empty line) prints: Error: empty
Expected Output:
Hello, Alice
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.