160161162163164165166167168169170
catch (HibernateException he) { if (he instanceof ObjectNotFoundException) { throw new NoSuchUserTrackerException(userTrackerId.toString()); } else { throw new SystemException(he); } } finally { HibernateUtil.closeSession(session); }
195196197198199200201202203204205
} return list; } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
259260261262263264265266267268269
375376377378379380381382383384385
} return array; } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
409410411412413414415416417418419
473474475476477478479480481482483
589590591592593594595596597598599
617618619620621622623624625626627
652653654655656657658659660661662
} session.flush(); } catch (HibernateException he) { throw new SystemException(he); } finally { HibernateUtil.closeSession(session); } }
686687688689690691692693694695696