示例#1
0
 public List <ActionPower> GetDeptOrRoleAction(int id, byte flag, int deptid)
 {
     try
     {
         return(handler.GetDeptOrRoleAction(id, flag, deptid));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取部门或角色ACTION出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred.");
         throw exception;
     }
 }