Package maissocial.exception

Examples of maissocial.exception.TipoLogradouroJaCadastradaException


        TipoLogradouro tl2 = this.tlRep.pesquisarTipoLogradouroPorDescricao(tl.getDescricao());
        if(tl2 == null){
            this.tlRep.salvarTipoLogradouro(tl);
        }else{
            throw new TipoLogradouroJaCadastradaException("Tipo de Logradouro já cadastrado!");
        }

    }
View Full Code Here


        TipoLogradouro td2 = this.tlRep.pesquisarTipoLogradouroPorDescricao(tl.getDescricao());
        if(td2 == null){
            this.tlRep.alterarTipoLogradouro(tl);
        }else{
            throw new TipoLogradouroJaCadastradaException("Tipo de Logradouro já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.TipoLogradouroJaCadastradaException

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.