File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
lesson_17/bank/bank_app/src/main/java/com/codedifferently/lesson17/bank Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11package com .codedifferently .lesson17 .bank ;
22
3+ import com .codedifferently .lesson17 .bank .exceptions .AccountNotFoundException ;
34import java .util .HashMap ;
45import java .util .Map ;
56import java .util .Set ;
67import java .util .UUID ;
78
8- import com .codedifferently .lesson17 .bank .exceptions .AccountNotFoundException ;
9-
109/** Represents a bank ATM. */
1110public class BankAtm {
1211
@@ -70,9 +69,8 @@ public void depositFunds(String accountNumber, Check check) {
7069 *
7170 * @param accountNumber The unique identifier of the account.
7271 * @param amount The amount to withdraw from the account.
73- *
74- * @throws IllegalArgumentException if the account is not found or if the withdrawal
75- * would result in a balance below $10,000 for a BusinessCheckingAccount.
72+ * @throws IllegalArgumentException if the account is not found or if the withdrawal would result
73+ * in a balance below $10,000 for a BusinessCheckingAccount.
7674 */
7775 public void withdrawFunds (String accountNumber , double amount ) {
7876 CheckingAccount account = getAccountOrThrow (accountNumber );
You can’t perform that action at this time.
0 commit comments