Package maissocial.exception

Examples of maissocial.exception.LogradouroJaCadastradaException


        Logradouro lg2 = this.lgRep.pesquisarLogradouroPorNome(lg.getNome());
        if(lg2 == null){
            this.lgRep.salvarLogradouro(lg);
        }else{
            throw new LogradouroJaCadastradaException("Logradouro já cadastrado!");
        }

    }
View Full Code Here


        Logradouro lg2 = this.lgRep.pesquisarLogradouroPorNome(lg.getNome());
        if(lg2 == null){
            this.lgRep.alterarLogradouro(lg);
        }else{
            throw new LogradouroJaCadastradaException("Logradouro já cadastrado!");
        }
    }
View Full Code Here

TOP

Related Classes of maissocial.exception.LogradouroJaCadastradaException

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.