コード例 #1
0
 public int AddModuleInf(string xmlData)
 {
     try
     {
         return(handler.AddModuleInf(xmlData));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "插入菜单信息", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in insert ModuleInf.");
         throw exception;
     }
 }