import java.util.*; import java.awt.*; import Exceptions; // // Checking account class - the only type of account with daily payment // of interest -> does NOT inherit MonthlyAccount // public class CheckingAccount extends Account { // minimal balance required for a checking account static final double minBalance=1000.0f; CheckingAccount(String accountname, double accountinterest, TextArea out) throws NoNameException { super(accountname,accountinterest, out); balance=1000.0f; } void Deposit(double amount) throws NegativeAmountException { if(amount<0) throw new NegativeAmountException(Name()); // update the balance balance+=amount; } void Withdraw(double amount) throws MinBalanceException { if(balance-amount