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