Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Id
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28876/Id
Modified Files:
IdentifierGenerationException.cs
Log Message:
minor fixes for FxCop rules
Index: IdentifierGenerationException.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Id/IdentifierGenerationException.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** IdentifierGenerationException.cs 13 Sep 2004 05:37:38 -0000 1.3
--- IdentifierGenerationException.cs 22 Nov 2004 03:53:59 -0000 1.4
***************
*** 9,15 ****
public class IdentifierGenerationException : HibernateException
{
! public IdentifierGenerationException(string msg) : base(msg) {}
! public IdentifierGenerationException(string msg, Exception e) : base(msg, e) {}
}
}
--- 9,15 ----
public class IdentifierGenerationException : HibernateException
{
! public IdentifierGenerationException(string message) : base(message) {}
! public IdentifierGenerationException(string message, Exception e) : base(message, e) {}
}
}
|