Пример #1
0
 public string GetWorkPowerUsers(int id)
 {
     try
     {
         return(powerHandler.GetWorkPowerUsers(id));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取任务权限出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in getting worked users.");
         throw exception;
     }
 }