446447448449450451452453
LOGGER.log(Level.DEBUG, "Got an article[id={0}]", articleId); return ret; } catch (final Exception e) { LOGGER.log(Level.ERROR, "Gets an article failed", e); throw new ServiceException(e); } }
191192193194195196197198
LOGGER.log(Level.FINER, "Got an article[id={0}]", articleId); return ret; } catch (final Exception e) { LOGGER.log(Level.SEVERE, "Gets an article failed", e); throw new ServiceException(e); } }
564565566567568569570571
return ret; } catch (final Exception e) { LOGGER.log(Level.ERROR, "Gets articles failed", e); throw new ServiceException(e); } }
301302303304305306307308
return ret; } catch (final Exception e) { LOGGER.log(Level.SEVERE, "Gets articles failed", e); throw new ServiceException(e); } }
354355356357358359360361
} return ret; } catch (final Exception e) { LOGGER.log(Level.SEVERE, "Gets articles by tag[id=" + tagId + "] failed", e); throw new ServiceException(e); } }
623624625626627628629630
} return ret; } catch (final Exception e) { LOGGER.log(Level.ERROR, "Gets articles by tag[id=" + tagId + "] failed", e); throw new ServiceException(e); } }
408409410411412413414415
} return ret; } catch (final Exception e) { LOGGER.log(Level.SEVERE, "Gets articles by archive date[id=" + archiveDateId + "] failed", e); throw new ServiceException(e); } }
683684685686687688689690
} return ret; } catch (final Exception e) { LOGGER.log(Level.ERROR, "Gets articles by archive date[id=" + archiveDateId + "] failed", e); throw new ServiceException(e); } }
433434435436437438439440
removeUnusedProperties(ret); return ret; } catch (final RepositoryException e) { LOGGER.log(Level.SEVERE, "Gets articles randomly failed[fetchSize=" + fetchSize + "]", e); throw new ServiceException(e); } }
509510511512513514515516
return ret; } catch (final Exception e) { LOGGER.log(Level.SEVERE, "Gets relevant articles failed", e); throw new ServiceException(e); } }