2010-07-23 Veerapuram Varadhan <v.varadhan@gmail.com>
[mono.git] / mcs / class / System.Data / System.Data / NoNullAllowedException.cs
index a220d840a382e97b2b5a7fbe8f86796348716f84..d61be7ba5c31b868fb779ccf8b6f736d214ce31c 100644 (file)
@@ -32,8 +32,8 @@ using System;
 using System.Globalization;
 using System.Runtime.Serialization;
 
-namespace System.Data {
-
+namespace System.Data
+{
        [Serializable]
        public class NoNullAllowedException : DataException
        {
@@ -42,8 +42,8 @@ namespace System.Data {
                {
                }
 
-               public NoNullAllowedException (string message)
-                       : base (message)
+               public NoNullAllowedException (string s)
+                       : base (s)
                {
                }
 
@@ -52,8 +52,8 @@ namespace System.Data {
                        : base (message, inner)
                {
                }
-
 #endif
+
                protected NoNullAllowedException (SerializationInfo info, StreamingContext context)
                        : base (info, context)
                {