Package ecar.exception

Examples of ecar.exception.ECARException


                    "and ta.indAtivoTa = :ativo " + "and taa.sisAtributoSatb in (:gruposUsuario) " +
                    "order by ta.descricaoTa").setString("inclusao", Dominios.COM_ACESSO_INCLUSAO).setString("ativo", Dominios.ATIVO).setParameterList("gruposUsuario",
                    seguranca.getGruposAcesso()).list();
        } catch (HibernateException e) {
            this.logger.error(e);
            throw new ECARException(e);
        }
    }
View Full Code Here


            if (buscar(
                    itemEstruturaRecurso.getItemEstruturarevisaoIettrev().getCodIettrev(),
                    Integer.valueOf(itemEstruturaRecurso.getFonteRecursoFonr().getCodFonr().intValue()),
                    Integer.valueOf(itemEstruturaRecurso.getRecursoRec().getCodRec().intValue()),
                    Integer.valueOf(itemEstruturaRecurso.getExercicioExe().getCodExe().intValue())) != null)
                throw new ECARException(
                        "itemEstrutura.recurso.inclusao.jaExiste");
        } catch (ECARException e) {
          this.logger.error(e);
            if (e.getMessageKey().equalsIgnoreCase("erro.objectNotFound")) {
                super.salvar(itemEstruturaRecurso);
View Full Code Here

         if (tx != null)
           try {
             tx.rollback();
           } catch (HibernateException r) {
                   this.logger.error(r);
             throw new ECARException("erro.hibernateException");
           }
             this.logger.error(e);
         throw new ECARException("erro.hibernateException");
       }
     }
View Full Code Here

      if (tx != null)
        try {
          tx.rollback();
        } catch (HibernateException r) {
                this.logger.error(r);
          throw new ECARException("erro.hibernateException");
        }
          this.logger.error(e);
      throw new ECARException("erro.hibernateException");
    }
    }
View Full Code Here

      query.setLong("fonte", codFonteRecurso.longValue());
     
      return query.list();
      } catch (HibernateException e) {
        this.logger.error(e);
      throw new ECARException(e);
        }
    }
View Full Code Here

            query.setLong("codExe", exercicio.getCodExe().longValue());
            query.setInteger("codIettrev", item.getCodIettrev().intValue());
            lista = query.list();
        } catch (HibernateException e) {
          this.logger.error(e);
      throw new ECARException("erro.hibernateException");
        }
        return lista;
    }
View Full Code Here

  public void excluir(UnidadeOrcamentariaUO unidade) throws ECARException {     
     try{
           boolean excluir = true;
        if(contar(unidade.getItemEstruturaIettsByCodUo()) > 0){
            excluir = false;
          throw new ECARException("unidadeOrcamentaria.exclusao.erro.ItemEstruturaIetts");
        }                  
        if(excluir)
            super.excluir(unidade);
     }catch(ECARException e){
       this.logger.error(e);
View Full Code Here

   * @param unidade
   * @throws ECARException
   */
  public void salvar(UnidadeOrcamentariaUO unidade) throws ECARException {
    if (pesquisarDuplos(unidade, new String[] {"descricaoUo","siglaUo"}, "codUo").size() > 0)
        throw new ECARException("unidadeOrcamentaria.validacao.registroDuplicado");
    if(unidade.getCodigoIdentUo() != null)
      if (pesquisarDuplos(unidade, new String[] {"codigoIdentUo"}, "codUo").size() > 0)
        throw new ECARException("unidadeOrcamentaria.validacao.registroDuplicado.codigoIdentUo");
    super.salvar(unidade);
  }
View Full Code Here

   * @param unidade
   * @throws ECARException
   */
  public void alterar(UnidadeOrcamentariaUO unidade) throws ECARException {
    if (pesquisarDuplos(unidade, new String[] {"descricaoUo","siglaUo"}, "codUo").size() > 0)
        throw new ECARException("unidadeOrcamentaria.validacao.registroDuplicado");
    if(unidade.getCodigoIdentUo() != null)
      if (pesquisarDuplos(unidade, new String[] {"codigoIdentUo"}, "codUo").size() > 0)
        throw new ECARException("unidadeOrcamentaria.validacao.registroDuplicado.codigoIdentUo");
    super.alterar(unidade);
  }
View Full Code Here

   
    retorno = q.list();
   
    } catch (HibernateException e) {
      this.logger.error(e);
      throw new ECARException(e);
    }
   
    return (retorno != null) ? retorno : new ArrayList();
  }
View Full Code Here

TOP

Related Classes of ecar.exception.ECARException

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.