Package maissocial.exception

Examples of maissocial.exception.TipoCursoProfJaCadastradaException


        TipoCursoProf cp2 = this.cpRep.pesquisarTipoCursoProfPorDescricao(cp.getDescricao());
        if(cp2 == null){
            this.cpRep.salvarTipoCursoProf(cp);
        }else{
            throw new TipoCursoProfJaCadastradaException("Tipo de Curso já cadastrado!");
        }

    }
View Full Code Here


        TipoCursoProf cp2 = this.cpRep.pesquisarTipoCursoProfPorDescricao(cp.getDescricao());
        if(cp2 == null){
            this.cpRep.alterarTipoCursoProf(cp);
        }else{
            throw new TipoCursoProfJaCadastradaException("Tipo de Curso já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoCursoProfJaCadastradaException

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.