Package maissocial.exception

Examples of maissocial.exception.SetorJaCadastradaException


        Setor st2 = this.stRep.pesquisarSetorPorDescricao(st.getDescricao());
        if(st2 == null){
            this.stRep.salvarSetor(st);
        }else{
            throw new SetorJaCadastradaException("Setor já cadastrado!");
        }

    }
View Full Code Here


        Setor st2 = this.stRep.pesquisarSetorPorDescricao(st.getDescricao());
        if(st2 == null){
            this.stRep.alterarSetor(st);
        }else{
            throw new SetorJaCadastradaException("Setor já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.SetorJaCadastradaException

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.