2009-10-29 Veerapuram Varadhan <vvaradhan@novell.com>
[mono.git] / mcs / class / System.Data / System.Data / RowNotInTableException.cs
index 1b9420dd52940e88794269bd48793cd3b48b7766..7b005b2e0d12eddaaff341f165082e947f2dbd7b 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)
                {
                }
 #endif
-               
+
                protected RowNotInTableException (SerializationInfo info, StreamingContext context)
                        : base (info, context)
                {