Revision: 4711
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4711&view=rev
Author: ayenderahien
Date: 2009-09-10 18:24:03 +0000 (Thu, 10 Sep 2009)
Log Message:
-----------
better error message
Modified Paths:
--------------
branches/2.1.x/nhibernate/src/NHibernate/Id/IdentifierGeneratorFactory.cs
Modified: branches/2.1.x/nhibernate/src/NHibernate/Id/IdentifierGeneratorFactory.cs
===================================================================
--- branches/2.1.x/nhibernate/src/NHibernate/Id/IdentifierGeneratorFactory.cs 2009-09-08 13:15:32 UTC (rev 4710)
+++ branches/2.1.x/nhibernate/src/NHibernate/Id/IdentifierGeneratorFactory.cs 2009-09-10 18:24:03 UTC (rev 4711)
@@ -215,7 +215,7 @@
}
catch (Exception e)
{
- throw new MappingException("could not instantiate id generator", e);
+ throw new MappingException("could not instantiate id generator: " + strategy, e);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|