From: Michael D. <mik...@us...> - 2004-09-13 05:37:46
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Cache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30623/NHibernate/Cache Modified Files: CacheException.cs Log Message: NH-99: Marked Exceptions as serializable. Index: CacheException.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Cache/CacheException.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CacheException.cs 17 Feb 2003 18:16:13 -0000 1.1 --- CacheException.cs 13 Sep 2004 05:37:38 -0000 1.2 *************** *** 1,11 **** using System; ! namespace NHibernate.Cache { ! /// <summary> /// Represents any exception from an <c>ICache</c> /// </summary> ! public class CacheException : HibernateException { ! public CacheException(string s) : base(s) { } --- 1,12 ---- using System; ! namespace NHibernate.Cache ! { /// <summary> /// Represents any exception from an <c>ICache</c> /// </summary> ! [Serializable] ! public class CacheException : HibernateException ! { public CacheException(string s) : base(s) { } |