Exemplo n.º 1
0
 public void DelStepForm(string sfid)
 {
     try
     {
         powerHandler.DelStepForm(sfid);
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "删除步骤表单权限出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in deleting steped form.");
         throw exception;
     }
 }