import java.util.*; import NoSuchAccountException; // // BankAccounts class // public class BankAccounts extends Vector { public void addAccount(Account newaccount) { super.addElement(newaccount); } public Account getAccount(String accountname) throws NoSuchAccountException { // searches for the account in the vector and returns it for(int i=0;i