Sets the bank account's balance.
float $balance:
BankAccountException
protected function setBalance($balance) { if ($balance >= 0) { $this->balance = $balance; } else { throw new BankAccountException(); } }