Uses of Class
banking.AccountException

Packages that use AccountException
banking   
test   
 

Uses of AccountException in banking
 

Subclasses of AccountException in banking
 class InsufficientBalanceException
          Thrown when an Account balance is insufficient.
 

Methods in banking that throw AccountException
 float SimpleAccountImpl.getBalance()
          Returns the current balance of this account.
 void SimpleAccountImpl.setBalance(float amount)
          Sets the balance of this account.
 void SimpleAccountImpl.credit(float amount)
          Adds an amount to the current balance of this account.
 void SimpleAccountImpl.debit(float amount)
          Deducts an amount from the current balance of this account.
static void InterAccountOperations.transfer(Account from, Account to, float amount)
          Performs funds transfer between two banking accounts.
 float Account.getBalance()
          Returns the current balance of this account.
 void Account.setBalance(float amount)
          Sets the balance of this account.
 void Account.credit(float amount)
          Adds an amount to the current balance of this account.
 void Account.debit(float amount)
          Deducts an amount from the current balance of this account.
 

Uses of AccountException in test
 

Methods in test that throw AccountException
static void SimpleAccountTest.main(java.lang.String[] args)
           
 



University Grenoble 1 (France) - Department of Computer Science
Master M1 - Adaptable Middleware - AOP / AspectJ.