Beispiel #1
0
 public int DeleteModule(int id)
 {
     try
     {
         return(handler.DeleteModule(id));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "删除Module相关信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in deleting Module.");
         throw exception;
     }
 }