Examples of GestioneSalException


Examples of it.pdor.webapp.gestioneSal.exception.GestioneSalException

      gestioneSalController.erogazioneTranche(mutuo, gruppoDatiFin, trancheMutuoSal, importoResiduo);
    } catch (Exception e) {
      log.error("Eccezione nel salvataggio della tranche Mutuo:" + trancheMutuoSal.getNumeroMutuo(), e);
      String message = "";
      if (e instanceof GestioneSalException) {
        GestioneSalException gse = (GestioneSalException) e;
        message = gse.getMessage();
      } else if (e instanceof MutuoSisbaNotFoundException) {
        message = rb.getString("gestioneSal.errore.mutuoSisbaNotFound");
      } else{
        message = rb.getString("gestioneSal.errore.contabilita");
      }
View Full Code Here

Examples of it.pdor.webapp.gestioneSal.exception.GestioneSalException

    } catch (Exception e) {
      log.error("Eccezione nel salvataggio della tranche Mutuo:"
          + trancheMutuoSal.getNumeroMutuo(), e);
      String message = "";
      if (e instanceof GestioneSalException) {
        GestioneSalException gse = (GestioneSalException) e;
        message = gse.getMessage();
      } else if (e instanceof MutuoSisbaNotFoundException) {
        message = rb.getString("gestioneSal.errore.mutuoSisbaNotFound");
      } else {
        message = rb.getString("gestioneSal.errore.contabilita");
      }
View Full Code Here

Examples of it.pdor.webapp.gestioneSal.exception.GestioneSalException

      mutuoAggiornato = gestionePraticaFacade.getMutuoById(mutuo.getNumeroMutuo());
     
    }catch (Exception e) {
      log.error("Eccezione nel salvataggio della tranche mutuo:" +mutuo.getNumeroMutuo(), e);
      //TODO:gestire internazionalizzazione
      throw new GestioneSalException("Operazione non riuscita: si e'' verifcato un errore nel salvataggio della tranche.");
    }
   
    DatiChiamataMultipla datiChiamataMultipla = new DatiChiamataMultipla();
   
    Date dataChiusura = mutuoAggiornato.getDatiFinanziariAttuali().getDataInizioValidita();
View Full Code Here

Examples of it.pdor.webapp.gestioneSal.exception.GestioneSalException

    try{
      mutuoAggiornato = gestionePraticaFacade.inserimentoTranche(mutuo, trancheMutuoSal, gruppoDatiFin );
    }catch (Exception e) {
      log.error("Eccezione nel salvataggio della tranche mutuo:" +mutuo.getNumeroMutuo(), e);
      //TODO:gestire internazionalizzazione
      throw new GestioneSalException("Operazione non riuscita: si e'' verifcato un errore nel salvataggio della tranche.");
    }
   
    DatiChiamataMultipla datiChiamataMultipla = new DatiChiamataMultipla();
   
    //Contabilizzo il SAL
View Full Code Here

Examples of it.pdor.webapp.gestioneSal.exception.GestioneSalException

     
      log.error("Eccezione nella chiusura del mutuo sal : "+dettaglioMutuo.getMutuo().getNumeroMutuo(),e);
     
      String message = "";
      if (e instanceof GestioneSalException) {
        GestioneSalException gse = (GestioneSalException) e;
        message = gse.getMessage();
      }else{
         message = rb.getString("gestioneSal.errore.contabilita");
      }
      gestioneSalAction.getAlertMsgPopup().setMessage(message);
      gestioneSalAction.getAlertMsgPopup().openPopup();
View Full Code Here

Examples of it.pdor.webapp.gestioneSal.exception.GestioneSalException

      try{
        Mutuo mutuo = dettaglioMutuo.getMutuo();
       
        StatoMutuo sm = gestionePratica.getStatoMutuo(mutuo.getCodiceStato());
        if (CODICE_STATO_MUTUO_PROV.equals(sm.getCodiceTipoStato())) {
          throw new GestioneSalException(rb.getString("gestioneSal.mutuoProvvisorio"));
        }
       
        try {
          GruppoDatiFinanziari gdf =
            gestionePratica.getDatiFinanziariAllaData( mutuo.getNumeroMutuo() , new Date());
          ifgdf != null &&  !CODICE_TIPO_PIANO_SAL.equals(gdf.getCodiceTipoGenerazionepiano()) ){
            throw new GestioneSalException(rb.getString("gestioneSal.mutuoNoSal"));
          }
         
          tranchesMutuoSal = gestionePratica.getTranchesMutuoSal(mutuo.getNumeroMutuo());
        } catch (DataAntecedenteDataDecorrenzaException e) {
          throw new GestioneSalException(rb.getString("gestioneSal.impossibileVerificareSeMutuoSal"));
        }
      }catch (NullPointerException e) {
        log.debug("In sessione non ho piu il numero mutuo per cui torno alla ricerca",e);
        BackingBeanUtility.goToNavigationRule("", "startGestioneSal");
      } catch (GestioneSalException e) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.