Exemplo n.º 1
0
 /// <summary>
 /// Guarda el mensaje de error por el cual no
 /// se pudo ser procesada la poliza por el
 /// servicio de PI
 /// </summary>
 /// <returns></returns>
 internal void ActualizaMensajeSAP(RespuestaServicioPI respuestaServicioPI)
 {
     try
     {
         Logger.Info();
         var polizaDAL = new PolizaDAL();
         polizaDAL.ActualizaMensajeSAP(respuestaServicioPI);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }