Examples of GrauEscolarJaCadastradoException


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

Examples of maissocial.exception.GrauEscolarJaCadastradoException

        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
Copyright © 2018 www.massapi.com. 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.