Package org.fenixedu.academic.service.services.exceptions

Examples of org.fenixedu.academic.service.services.exceptions.FenixServiceException


    @Atomic
    public static List run(String executionDegreeId, String executionPeriodId, Integer curricularYearInt)
            throws FenixServiceException {

        if (executionPeriodId == null) {
            throw new FenixServiceException("nullExecutionPeriodId");
        }

        final ExecutionSemester executionSemester = FenixFramework.getDomainObject(executionPeriodId);

        final List<ExecutionCourse> executionCourseList;
View Full Code Here


    }

    private static List<InfoExecutionDegree> getExecutionDegreesByExecutionPeriodId(String executionPeriodId,
            AccessControlPredicate<Object> permission) throws FenixServiceException {
        if (executionPeriodId == null) {
            throw new FenixServiceException("executionPeriodId.should.not.be.null");
        }
        ExecutionSemester executionSemester = FenixFramework.getDomainObject(executionPeriodId);

        List<ExecutionDegree> executionDegrees =
                ExecutionDegree.getAllByExecutionYear(executionSemester.getExecutionYear().getYear());
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.service.services.exceptions.FenixServiceException

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.