171172173174175176177178179180181
return company; } catch (HibernateException he) { if (he instanceof ObjectNotFoundException) { throw new NoSuchCompanyException(companyId.toString()); } else { throw new SystemException(he); } }
6263646566676869707172