โ Back to Exceptions
Question 689
Define a Custom Exception
Define a Custom Exception
Define your own exception classNegativeNumberExceptionthat extendsExceptionand passes a message to the base constructor. Read an integer; if it is negative,throw new NegativeNumberException("value is negative"). Otherwise printOK: <n>. Catch your exception and printCaught: <message>. Use top-level statements, then declare the class after them. Input5prints: OK: 5 Input-2prints: Caught: value is negative
Expected Output:
OK: 5
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.