コード例 #1
0
 public bool IsOprPower(List <ActionPower> list, string userno, string controller, string action, string btnKey)
 {
     try
     {
         return(handler.IsOprPower(list, userno, controller, action, btnKey));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "判断页面按钮出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred.");
         throw exception;
     }
 }