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

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


    final public void setStudentAreas(Branch specializationArea, Branch secundaryArea) throws NotAuthorizedBranchChangeException,
            BothAreasAreTheSameServiceException, InvalidArgumentsServiceException, DomainException {

        if (!getCanChangeSpecializationArea()) {
            throw new NotAuthorizedBranchChangeException();
        }

        if (areNewAreasCompatible(specializationArea, secundaryArea)) {
            setStudentAreasWithoutRestrictions(specializationArea, secundaryArea);
        }
View Full Code Here

TOP

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

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.