Withdraws an amount of money from the bank account.
float $balance:
BankAccountException
public function withdrawMoney($balance) { $this ->setBalance($this ->getBalance() - $balance); return $this ->getBalance(); }