HHH-2849 : IdentifierGeneratorFactory error logging

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14041 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2007-10-03 02:12:41 +00:00
parent e47d267b52
commit 9c2eb65d2f
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public final class IdentifierGeneratorFactory {
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);
}
}