CJCoding With Joseph

Define a Custom Exception

Define your own exception class NegativeNumberException that extends Exception and passes a message to the base constructor. Read an integer; if it is negative, throw new NegativeNumberException("value is negative"). Otherwise print OK: <n>. Catch your exception and print Caught: <message>. Use top-level statements, then declare the class after them.

Input 5 prints: OK: 5
Input -2 prints: Caught: value is negative

Expected Output:

OK: 5
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
5\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.