CJCoding With Joseph

Custom Exception With Data and finally

Define an InsufficientFundsException with an int Shortfall property set through its constructor. The balance is 100. Read an amount to withdraw; if amount > balance, throw the exception carrying the shortfall (amount - balance). Otherwise print Withdrew <amount>. Catch it and print Short by <shortfall>. A finally block always prints Transaction complete. Use top-level statements, then declare the class after them.

Input 50 prints:
Withdrew 50
Transaction complete

Input 150 prints:
Short by 50
Transaction complete

Expected Output:

Withdrew 50
Transaction complete
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
50\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.