public void alterarLogradouro(Logradouro lg) throws Exception, LogradouroJaCadastradaException{
if( lg == null || lg.getNome() == null || lg.getNome().equals("") || lg.getStatus() == 0){
throw new Exception("Parâmetros Inválidos!");
}
Logradouro lg2 = this.lgRep.pesquisarLogradouroPorNome(lg.getNome());
if(lg2 == null){
this.lgRep.alterarLogradouro(lg);
}else{
throw new LogradouroJaCadastradaException("Logradouro já cadastrado!");
}