CJCoding With Joseph

Custom Exception With Data

Define a custom exception NegativeNumberException that stores the rejected number in an int Value property. Read an integer n. If n < 0, throw the exception passing n; otherwise print Accepted: <n>. In the catch, print Rejected: <ex.Value>. Declare the class after the top-level statements.

Input 7 prints: Accepted: 7
Input -4 prints: Rejected: -4

Expected Output:

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