Beispiel #1
0
 public void UptForm(string fname, string furl, int gno, int formid)
 {
     try
     {
         powerHandler.UptForm(fname, furl, gno, formid);
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "更新表单出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in updating form.");
         throw exception;
     }
 }