CJCoding With Joseph

Throw ArgumentException On Empty Name

Read a name from input. If it is empty, throw new ArgumentException("empty"); otherwise print Hello, <name>. Catch the exception and print Error: <message> using ex.Message. Use top-level statements with try/catch.

Input Alice prints: Hello, Alice
Input (empty line) prints: Error: empty

Expected Output:

Hello, Alice
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
Alice\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.