2002-06-27 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / class / corlib / System / ContextMarshalException.cs
index 40fde84bbacaf74a1a27bf16993238b48022d95e..bb058cf2e095dcf4cbb2ebe746c3de013fd6670b 100644 (file)
@@ -13,30 +13,30 @@ using System.Runtime.Serialization;
 
 namespace System
 {
-          [Serializable]
-          public class ContextMarshalException : SystemException
-          {
-                        // Constructors
-                        public ContextMarshalException ()
-                                   : base (Locale.GetText ("Attempt to marshal and object across a context failed."))
-                        {
-                        }
-
-                        public ContextMarshalException (string message)
-                                   : base (message)
-                        {
-                        }
-                        
-                        protected ContextMarshalException (SerializationInfo info,
-                                   StreamingContext context)
-                                   : base (info, context)
-                        {
-                        }
-
-                        public ContextMarshalException (string message, Exception innerException)
-                                   :base (message, innerException)
-                        {
-                        }
-                                   
-          }
+       [Serializable]
+       public class ContextMarshalException : SystemException
+       {
+               // Constructors
+               public ContextMarshalException ()
+                       : base (Locale.GetText ("Attempt to marshal and object across a context failed."))
+                       {
+                       }
+               
+               public ContextMarshalException (string message)
+                       : base (message)
+                       {
+                       }
+               
+               protected ContextMarshalException (SerializationInfo info,
+                                                  StreamingContext context)
+                       : base (info, context)
+                       {
+                       }
+               
+               public ContextMarshalException (string message, Exception innerException)
+                       :base (message, innerException)
+                       {
+                       }
+               
+       }
 }