Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Hql
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15231/NHibernate/Hql
Modified Files:
QueryTranslator.cs
Log Message:
replaced a "throw me" with "throw" to avoid loosing call stack.
Index: QueryTranslator.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Hql/QueryTranslator.cs,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** QueryTranslator.cs 17 Jan 2005 03:40:57 -0000 1.53
--- QueryTranslator.cs 14 Feb 2005 03:27:39 -0000 1.54
***************
*** 158,164 ****
throw;
}
! catch( MappingException me )
{
! throw me;
}
catch( Exception e )
--- 158,164 ----
throw;
}
! catch( MappingException )
{
! throw;
}
catch( Exception e )
|