Esempio n. 1
0
 public void saveFormPower(string forms, string keyid, int keytype)
 {
     try
     {
         powerHandler.saveFormPower(forms, keyid, keytype);
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "保存表单权限出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in saving form power.");
         throw exception;
     }
 }