Exemple #1
0
 public int ChangeDeptModule(int id, string GroupIds)
 {
     try
     {
         return(handler.ChangeDeptModule(id, GroupIds));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "更新HrGroupModule信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in update HrGroupModule.");
         throw exception;
     }
 }