Update of /cvsroot/nhibernate/nhibernate/src/NHibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18384
Modified Files:
HibernateException.cs
Log Message:
fixing xml comments and letting ReSharper do reformatting
Index: HibernateException.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/HibernateException.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** HibernateException.cs 2 Dec 2004 21:26:01 -0000 1.7
--- HibernateException.cs 31 Dec 2004 15:24:05 -0000 1.8
***************
*** 2,8 ****
using System.Runtime.Serialization;
! namespace NHibernate
{
-
/// <summary>
/// Any exception that occurs in the O-R persistence layer.
--- 2,7 ----
using System.Runtime.Serialization;
! namespace NHibernate
{
/// <summary>
/// Any exception that occurs in the O-R persistence layer.
***************
*** 10,34 ****
/// <remarks>Exceptions that occur in the database layer are left as native exceptions</remarks>
[Serializable]
! public class HibernateException : ApplicationException
{
! public HibernateException() : base( String.Empty )
! {
}
! public HibernateException(Exception e) : base( e.Message, e )
! {
}
! public HibernateException(string message, Exception e) : base( message, e )
! {
}
! public HibernateException(string message) : base( message )
! {
}
! protected HibernateException(SerializationInfo info, StreamingContext context) : base(info, context)
! {
}
}
! }
--- 9,54 ----
/// <remarks>Exceptions that occur in the database layer are left as native exceptions</remarks>
[Serializable]
! public class HibernateException : ApplicationException
{
! /// <summary>
! ///
! /// </summary>
! public HibernateException() : base( String.Empty )
! {
}
! /// <summary>
! ///
! /// </summary>
! /// <param name="e"></param>
! public HibernateException( Exception e ) : base( e.Message, e )
! {
}
! /// <summary>
! ///
! /// </summary>
! /// <param name="message"></param>
! /// <param name="e"></param>
! public HibernateException( string message, Exception e ) : base( message, e )
! {
}
! /// <summary>
! ///
! /// </summary>
! /// <param name="message"></param>
! public HibernateException( string message ) : base( message )
! {
}
! /// <summary>
! ///
! /// </summary>
! /// <param name="info"></param>
! /// <param name="context"></param>
! protected HibernateException( SerializationInfo info, StreamingContext context ) : base( info, context )
! {
}
}
! }
\ No newline at end of file
|