Ejemplo n.º 1
0
 public void RunMonthlyJob()
 {
     try
     {
         _repos.runMontlyJob();
     }
     catch (NullReferenceException e)
     {
         throw e;
     }
     catch (Exception e)
     {
         _log4net.Error("Exception in RunMonthlyJob() in MonthlyJobProvider");
         _log4net.Error(e.Message);
         throw e;
     }
 }