800801802803804805806807808809810
return UserHBMUtil.model(userHBM); } catch (HibernateException he) { if (he instanceof ObjectNotFoundException) { throw new NoSuchUserException(); } else { throw new SystemException(he); } }
925926927928929930931932933934935
session.flush(); } catch (HibernateException he) { if (he instanceof ObjectNotFoundException) { throw new NoSuchUserException(); } else { throw new SystemException(he); } }
10331034103510361037103810391040104110421043