Пример #1
0
 public void UptStep(string name, string pname, int isend, int id)
 {
     try
     {
         powerHandler.UptStep(name, pname, isend, id);
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "更新任务环节出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in updating worked step.");
         throw exception;
     }
 }