Update VS project files
[mono.git] / mcs / class / System.Data / System.Data / RowNotInTableException.cs
index af9cf1c246eb718926dfe8e9a676e5beb252c1c2..022fa051a77d6997c6f61bfe2c3ae0038ee21268 100644 (file)
@@ -32,8 +32,8 @@ using System;
 using System.Globalization;
 using System.Runtime.Serialization;
 
-namespace System.Data {
-
+namespace System.Data
+{
        [Serializable]
        public class RowNotInTableException : DataException
        {
@@ -42,10 +42,17 @@ namespace System.Data {
                {
                }
 
-               public RowNotInTableException (string message)
-                       : base (message)
+               public RowNotInTableException (string s)
+                       : base (s)
+               {
+               }
+
+#if NET_2_0
+               public RowNotInTableException (string message, Exception innerException)
+                       : base (message, innerException)
                {
                }
+#endif
 
                protected RowNotInTableException (SerializationInfo info, StreamingContext context)
                        : base (info, context)