Package com.freewebsys.sns.service

Examples of com.freewebsys.sns.service.FeedException


      throws FeedException {
    try {
      FeedUser feedUser = (FeedUser) baseDao.findById(FeedUser.class, id);
      baseDao.delete(feedUser);
    } catch (Exception e) {
      throw new FeedException("Feed删除异常");
    }
  }
View Full Code Here


        // 通用查询匹配
        conf = baseDao.findPage(start, limit, hql, userInfo.getId());
      }
      return conf;
    } catch (Exception e) {
      throw new FeedException("查询Feed全部异常");
    }
  }
View Full Code Here

TOP

Related Classes of com.freewebsys.sns.service.FeedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.