Package org.mifosplatform.organisation.workingdays.exception

Examples of org.mifosplatform.organisation.workingdays.exception.WorkingDaysNotFoundException


    }

    public WorkingDays findOne() {
        final List<WorkingDays> workingDaysList = this.repository.findAll();

        if (workingDaysList == null || workingDaysList.isEmpty()) { throw new WorkingDaysNotFoundException(); }
        return workingDaysList.get(0);
    }
View Full Code Here

TOP

Related Classes of org.mifosplatform.organisation.workingdays.exception.WorkingDaysNotFoundException

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.