Package maissocial.exception

Examples of maissocial.exception.UoJaCadastradaException


        Uo uo2 = this.uoRep.pesquisarUoPorNome(uo.getNome());
        if(uo2 == null){
            this.uoRep.salvarUo(uo);
        }else{
            throw new UoJaCadastradaException("Unidade Organizacional já cadastrada!");
        }

    }
View Full Code Here


        Uo uo2 = this.uoRep.pesquisarUoPorNome(uo.getNome());
        if(uo2 == null){
            this.uoRep.alterarUo(uo);
        }else{
            throw new UoJaCadastradaException("Unidade Ornizacional já cadastrada!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.UoJaCadastradaException

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.