[hibernate-commits] Hibernate SVN: r14040 - core/branches/Branch_3_2/src/org/hibernate/id.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Oct 2 22:12:20 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-10-02 22:12:20 -0400 (Tue, 02 Oct 2007)
New Revision: 14040

Modified:
   core/branches/Branch_3_2/src/org/hibernate/id/IdentifierGeneratorFactory.java
Log:
HHH-2849 : IdentifierGeneratorFactory error logging

Modified: core/branches/Branch_3_2/src/org/hibernate/id/IdentifierGeneratorFactory.java
===================================================================
--- core/branches/Branch_3_2/src/org/hibernate/id/IdentifierGeneratorFactory.java	2007-10-02 21:35:29 UTC (rev 14039)
+++ core/branches/Branch_3_2/src/org/hibernate/id/IdentifierGeneratorFactory.java	2007-10-03 02:12:20 UTC (rev 14040)
@@ -95,7 +95,7 @@
 			return idgen;
 		}
 		catch (Exception e) {
-			throw new MappingException("could not instantiate id generator", e);
+			throw new MappingException("could not instantiate id generator [entity-name=" + params.get( IdentifierGenerator.ENTITY_NAME ) + "]", e);
 		}
 	}
 




More information about the hibernate-commits mailing list