Package maissocial.exception

Examples of maissocial.exception.TipoEstrutViariaJaCadastradaException


        TipoEstrutViaria ev2 = this.evRep.pesquisarTipoEstrutViariaPorDescricao(ev.getDescricao());
        if(ev2 == null){
            this.evRep.salvarTipoEstrutViaria(ev);
        }else{
            throw new TipoEstrutViariaJaCadastradaException("Tipo de Estrutura Viária já cadastrada!");
        }

    }
View Full Code Here


        TipoEstrutViaria td2 = this.evRep.pesquisarTipoEstrutViariaPorDescricao(ev.getDescricao());
        if(td2 == null){
            this.evRep.alterarTipoEstrutViaria(ev);
        }else{
            throw new TipoEstrutViariaJaCadastradaException("Tipo de Estrutura Viuária já cadastrada!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoEstrutViariaJaCadastradaException

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.