public void alterarOrg(Org org) throws Exception, OrgJaCadastradaException{
if( org == null || org.getNome() == null || org.getNome().equals("") || org.getStatus() == 0){
throw new Exception("Parâmetros Inválidos!");
}
Org org2 = this.orgRep.pesquisarOrgPorNome(org.getNome());
if(org2 == null){
this.orgRep.alterarOrg(org);
}else{
throw new OrgJaCadastradaException("Organização já cadastrado!");
}