|
From: <aye...@us...> - 2010-01-06 21:41:25
|
Revision: 4911
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=4911&view=rev
Author: ayenderahien
Date: 2010-01-06 21:41:19 +0000 (Wed, 06 Jan 2010)
Log Message:
-----------
Adding default ctors - per NH-2021
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate/ADOException.cs
trunk/nhibernate/src/NHibernate/Exceptions/GenericADOException.cs
Modified: trunk/nhibernate/src/NHibernate/ADOException.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/ADOException.cs 2010-01-06 21:39:25 UTC (rev 4910)
+++ trunk/nhibernate/src/NHibernate/ADOException.cs 2010-01-06 21:41:19 UTC (rev 4911)
@@ -17,6 +17,10 @@
{
private readonly string sql;
+ public ADOException()
+ {
+
+ }
/// <summary>
/// Initializes a new instance of the <see cref="ADOException"/> class.
/// </summary>
Modified: trunk/nhibernate/src/NHibernate/Exceptions/GenericADOException.cs
===================================================================
--- trunk/nhibernate/src/NHibernate/Exceptions/GenericADOException.cs 2010-01-06 21:39:25 UTC (rev 4910)
+++ trunk/nhibernate/src/NHibernate/Exceptions/GenericADOException.cs 2010-01-06 21:41:19 UTC (rev 4911)
@@ -7,6 +7,10 @@
[Serializable]
public class GenericADOException : ADOException
{
+ public GenericADOException()
+ {
+
+ }
public GenericADOException(SerializationInfo info, StreamingContext context) : base(info, context) { }
public GenericADOException(string message, Exception innerException, string sql) : base(message, innerException, sql) { }
public GenericADOException(string message, Exception innerException) : base(message, innerException) { }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|