コード例 #1
0
 public DataTable GetModuleGroupID(int moduleid)
 {
     try
     {
         return(handler.GetModuleGroupID(moduleid));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "更新GetModuleGroupID信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in getting.");
         throw exception;
     }
 }