ParamUtility.checkState(null, this.postDao, "postDao");
try {
return this.postDao.getAllPostsSortByDate(type, pageNum, pageSize);
} catch (DaoException e) {
throw new PostServiceException("Cannot get all posts sort by date. Dao exception: " + e.getMessage(), e);
}
}