Package maissocial.exception

Examples of maissocial.exception.GrupoUsJaCadastradaException


        GrupoUs gu2 = this.guRep.pesquisarGrupoUsPorDescricao(gu.getDescricao());
        if(gu2 == null){
            this.guRep.salvarGrupoUs(gu);
        }else{
            throw new GrupoUsJaCadastradaException("Grupo de Usuário já cadastrado!");
        }

    }
View Full Code Here


        GrupoUs gu2 = this.guRep.pesquisarGrupoUsPorDescricao(gu.getDescricao());
        if(gu2 == null){
            this.guRep.alterarGrupoUs(gu);
        }else{
            throw new GrupoUsJaCadastradaException("Grupo se Usuário já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.GrupoUsJaCadastradaException

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.