2002-06-27 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / MissingFieldException.cs
index d53b65bd976299b4f83a8b8d599e460d175ba6a0..78feaab1fdb4ca58aadb87b8710f831ad7ba0d97 100644 (file)
@@ -19,27 +19,28 @@ namespace System
                // 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)
-                       {
-                       }
+                       : base (message, innerException)
+               {
+               }
                
                public MissingFieldException (string className, string fieldName)
-                       {
-                       }
+                       : base (className, fieldName)
+               {
+               }
        }
 }