2002-06-27 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / MissingFieldException.cs
index 2decf8c7068bef60a36ea12c5645f35012ab7f09..78feaab1fdb4ca58aadb87b8710f831ad7ba0d97 100644 (file)
@@ -13,33 +13,34 @@ using System.Runtime.Serialization;
 
 namespace System
 {
-          [Serializable]
-          public class MissingFieldException : MissingMemberException
-          {
-                        // Constructors
-                        public MissingFieldException ()
-                                   : base (Locale.GetText ("Field does not exist."))
-                        {
-                        }
-
-                        public MissingFieldException (string message)
-                                   : base (message)
-                        {
-                        }
-                        
-                        protected MissingFieldException (SerializationInfo info,
-                                   StreamingContext context)
-                                   : base (info, context)
-                        {
-                        }
-
-                        public MissingFieldException (string message, Exception innerException)
-                                   :base (message, innerException)
-                        {
-                        }
-
-                        public MissingFieldException (string className, string fieldName)
-                        {
-                        }
-          }
+       [Serializable]
+       public class MissingFieldException : MissingMemberException
+       {
+               // Constructors
+               public MissingFieldException ()
+                       : base (Locale.GetText ("Field does not exist."))
+               {
+               }
+               
+               public MissingFieldException (string message)
+                       : base (message)
+               {
+               }
+               
+               protected MissingFieldException (SerializationInfo info,
+                                                StreamingContext context)
+                       : base (info, context)
+               {
+               }
+               
+               public MissingFieldException (string message, Exception innerException)
+                       : base (message, innerException)
+               {
+               }
+               
+               public MissingFieldException (string className, string fieldName)
+                       : base (className, fieldName)
+               {
+               }
+       }
 }