Update VS project files
[mono.git] / mcs / class / System.Data / System.Data / RowNotInTableException.cs
index 1b9420dd52940e88794269bd48793cd3b48b7766..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,17 +42,18 @@ namespace System.Data {
                {
                }
 
-               public RowNotInTableException (string message)
-                       : base (message)
+               public RowNotInTableException (string s)
+                       : base (s)
                {
                }
+
 #if NET_2_0
-               public RowNotInTableException (string message, Exception inner)
-                       : base (message, inner)
+               public RowNotInTableException (string message, Exception innerException)
+                       : base (message, innerException)
                {
                }
 #endif
-               
+
                protected RowNotInTableException (SerializationInfo info, StreamingContext context)
                        : base (info, context)
                {