Ejemplo n.º 1
0
 public void Initialize(object key, ISessionImplementor session)
 {
     try
     {
         initializer.Initialize(key, session);
     }
     catch (HibernateException)
     {
         // Do not call Convert on HibernateExceptions
         throw;
     }
     catch (Exception sqle)
     {
         throw Convert(sqle, "could not initialize collection: " + MessageHelper.InfoString(this, key));
     }
 }