Examples of ProfissaoJaCadastradaException


Examples of maissocial.exception.ProfissaoJaCadastradaException

        Profissao pf2 = this.pfRep.pesquisarProfissaoPorDescricao(pf.getDescricao());
        if(pf2 == null){
            this.pfRep.salvarProfissao(pf);
        }else{
            throw new ProfissaoJaCadastradaException("Profissao já cadastrada!");
        }

    }
View Full Code Here

Examples of maissocial.exception.ProfissaoJaCadastradaException

        Profissao pf2 = this.pfRep.pesquisarProfissaoPorDescricao(pf.getDescricao());
        if(pf2 == null){
            this.pfRep.alterarProfissao(pf);
        }else{
            throw new ProfissaoJaCadastradaException("Profissao já cadastrada!");
        }
    }
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.