Ejemplo n.º 1
0
 public List <CAPower> SelectPowerLists(string userNo, bool isSupper, string module)
 {
     try
     {
         return(handler.SelectPowerLists(userNo, isSupper, module));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取权限信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in Get information of power.");
         throw exception;
     }
 }