Package ecar.exception

Examples of ecar.exception.ECARException


      hql.append("'");
    } else if (funcaoFun.getNomeFun().equals(FuncaoDao.NOME_FUNCAO_APONTAMENTOS)) {
      hql.append(FuncaoDao.NOME_FUNCAO_PONTOS_CRITICOS);
      hql.append("'");
    } else {
      throw new ECARException("sub_funcao_invalida");
    }

    hql.append(" and ef.estruturaEtt.codEtt = ");
    hql.append (estruturaEtt.getCodEtt());
   
View Full Code Here


        {
            //guarda a mensagem que o usu�rio deve exibir na tela
            if ( e.getCausaRaiz(  ) != null )
            {
                String mensagemErro = e.getCausaRaiz(  ).getMessage(  );
                throw new ECARException( mensagemErro );
            }
        }

        return url;
    }
View Full Code Here

  public void excluir(SitDemandaSitd sitDemanda) throws ECARException {     
    try{
      boolean excluir = true;
      if(contar(sitDemanda.getRegDemandaRegds()) > 0){
        excluir = false;
        throw new ECARException("sitDemanda.exclusao.erro.regDemandaRegds");
     

      if(contar(sitDemanda.getVisaoSituacaoDemandas()) > 0){
        excluir = false;
        throw new ECARException("sitDemanda.exclusao.erro.visoes");
     
      //(SitDemandaSitd) VisaoDao.buscar(SitDemandaSitd.class, Long.valueOf(Pagina.getParam(request, "codigo")))
     
      if(excluir)
        super.excluir(sitDemanda);
View Full Code Here

         * @param situacaoDemanda
         * @throws ECARException
   */
  public void salvar(SitDemandaSitd situacaoDemanda) throws ECARException {
    if (pesquisarDuplos(situacaoDemanda, new String[] {"descricaoSitd"}, "codSitd").size() > 0)
        throw new ECARException("situacao.validacao.registroDuplicado");
   
    //antes de salvar verifica se existe alguma situa��o j� setada como primeira situa��o
    if (jaTemPrimeiraSituacao(situacaoDemanda))
      throw new ECARException("situacaoDemanda.validacao.indPrimeiraSituacaoSitd.duplicada");
   
    super.salvar(situacaoDemanda);
  }
View Full Code Here

         * @param situacaoDemanda
         * @throws ECARException
   */
  public void alterar(SitDemandaSitd situacaoDemanda) throws ECARException {
    if (pesquisarDuplos(situacaoDemanda, new String[] {"descricaoSitd"}, "codSitd").size() > 0)
        throw new ECARException("situacao.validacao.registroDuplicado");
   
    //antes de salvar verifica se existe alguma situa��o j� setada como primeira situa��o
    if (jaTemPrimeiraSituacao(situacaoDemanda))
      throw new ECARException("situacaoDemanda.validacao.indPrimeiraSituacaoSitd.duplicada");
   
    super.alterar(situacaoDemanda);
  }
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

     */
    public void salvar(ItemEstFisicoRevIettfr itemEstrutFisico) throws ECARException {
        setPK(itemEstrutFisico);
        try {
            if (buscar(ItemEstFisicoRevIettfr.class, itemEstrutFisico.getComp_id()) != null)
              throw new ECARException("itemEstrutura.quantPrevista.inclusao.jaExiste");
        } catch (ECARException e) {
          this.logger.error(e);
            if (e.getMessageKey().equalsIgnoreCase("erro.objectNotFound")) {
                super.salvar(itemEstrutFisico);
            } else
View Full Code Here

        if (lista.size() != 0)
          ptcCor = (PontocriticoCorPtccor) lista.iterator().next();
      }
        } catch (ObjectNotFoundException e){
      this.logger.error(e);
          throw new ECARException("erro.objectNotFound");
        } catch (HibernateException e){
      this.logger.error(e);
      throw new ECARException("erro.hibernateException");
        }catch (Exception e){
      this.logger.error(e);
          throw new ECARException("erro.exception");
        }
   
    return ptcCor;
  }
View Full Code Here

        {
            //guarda a mensagem que o usu�rio deve exibir na tela
            if ( e.getCausaRaiz(  ) != null )
            {
                String mensagemErro = e.getCausaRaiz(  ).getMessage(  );
                throw new ECARException( mensagemErro );
            }
        }

        return url;
    }
View Full Code Here

       
        try {
            lista = this.session.createQuery("from AcompReferenciaAref a where a.tipoAcompanhamentoTa.indMonitoramentoTa = 'S' order by a.anoAref desc, a.mesAref desc, a.diaAref desc").list();
        } catch (HibernateException e) {
            this.logger.error(e);
            throw new ECARException("erro.hibernateException");
        }
       
        return lista;
    }
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.