Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17241/NHibernate/Persister
Modified Files:
AbstractEntityPersister.cs
Log Message:
modified order of InstantiationException custom ctor
Index: AbstractEntityPersister.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Persister/AbstractEntityPersister.cs,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** AbstractEntityPersister.cs 3 Jan 2005 03:45:27 -0000 1.31
--- AbstractEntityPersister.cs 14 Feb 2005 03:32:53 -0000 1.32
***************
*** 394,398 ****
catch( Exception e )
{
! throw new InstantiationException( "Could not instantiate entity: ", mappedClass, e );
}
}
--- 394,398 ----
catch( Exception e )
{
! throw new InstantiationException( "Could not instantiate entity: ", e, mappedClass );
}
}
***************
*** 1044,1048 ****
protected string GetSQLWhereString( string alias )
{
! return StringHelper.Replace( sqlWhereStringTemplate, Template.PlaceHolder, alias );
}
--- 1044,1048 ----
protected string GetSQLWhereString( string alias )
{
! return StringHelper.Replace( sqlWhereStringTemplate, Template.Placeholder, alias );
}
|