Package maissocial.exception

Examples of maissocial.exception.GrauEscolarJaCadastradoException


        GrauEscolar ge2 = this.geRep.pesquisarGrauEscolarPorDescricao(ge.getDescricao());
        if(ge2 == null){
            this.geRep.salvarGrauEscolar(ge);
        }else{
            throw new GrauEscolarJaCadastradoException("Grau Escolar já cadastrado!");
        }

    }
View Full Code Here


        GrauEscolar ge2 = this.geRep.pesquisarGrauEscolarPorDescricao(ge.getDescricao());
        if(ge2 == null){
            this.geRep.alterarGrauEscolar(ge);
        }else{
            throw new GrauEscolarJaCadastradoException("Grau Escolar já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.GrauEscolarJaCadastradoException

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.