Merge pull request #347 from JamesB7/master
[mono.git] / mcs / class / System.Data / System.Data / InRowChangingEventException.cs
index be89e447bd0db35513768817945b8134c7940ba6..3fa4e70b85828a60e1fc27f7687090eaa5e42c62 100644 (file)
@@ -32,8 +32,8 @@ using System;
 using System.Globalization;
 using System.Runtime.Serialization;
 
-namespace System.Data {
-
+namespace System.Data
+{
        [Serializable]
        public class InRowChangingEventException : DataException
        {
@@ -42,14 +42,14 @@ namespace System.Data {
                {
                }
 
-               public InRowChangingEventException (string message)
-                       : base (message)
+               public InRowChangingEventException (string s)
+                       : base (s)
                {
                }
 
 #if NET_2_0
-               public InRowChangingEventException (string message, Exception inner)
-                       : base (message, inner)
+               public InRowChangingEventException (string message, Exception innerException)
+                       : base (message, innerException)
                {
                }
 #endif