Esempio n. 1
0
 public int UpdateModuleInf(int id, string xmlData)
 {
     try
     {
         return(handler.UpdateModuleInf(id, xmlData));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "更新菜单信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in update ModuleInf.");
         throw exception;
     }
 }