Package org.openfriendsbudget.commons

Examples of org.openfriendsbudget.commons.PersonNotFoundInBudgetException


     */
    public void addExpenditure(Expenditure expenditure) throws PersonNotFoundInBudgetException, CurrencyNotFoundInBudget {
        Set<Person> recipients = expenditure.getRecipients().keySet();
        for( Person person : recipients) {
            if (!persons.contains(person)) {
                throw new PersonNotFoundInBudgetException(person);
            }
        }

        if(!persons.contains(expenditure.getOwner())) {
            throw new PersonNotFoundInBudgetException(expenditure.getOwner());
        }

        if((expenditure.getCurrency() != null) &&
           (!currency.equals(expenditure.getCurrency())) &&
           (!change.keySet().contains(expenditure.getCurrency()))) {
View Full Code Here

TOP

Related Classes of org.openfriendsbudget.commons.PersonNotFoundInBudgetException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.