super (0, new SSLSocket_RMIClientSocketFactory(), new SSLSocket_RMIServerSocketFactory()); _balance = startingBalance;
int cents = amount.getCents(); if (0 > cents) { throw new NegativeAmountException(); }
if (amount.greaterThan(_balance)) { throw new OverdraftException(false); } return;
return _balance;
checkForNegativeAmount(amount); _balance.add(amount); return;
checkForNegativeAmount(amount); checkForOverdraft(amount); _balance.subtract(amount); return;