Exemple #1
0
 public DataTable GetNewWorkInfo(int id)
 {
     try
     {
         return(powerHandler.GetNewWorkInfo(id));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取任务出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in getting work information.");
         throw exception;
     }
 }