Merge pull request #2247 from ivmai/match-ext-libgc-api
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / RemotingTimeoutException.cs
index 17b8d83d55a45fe84fa6e71c11c9c42850605b44..8c2fb8285402c56a25af45e027faf42424b61a57 100644 (file)
@@ -1,7 +1,7 @@
 //
 // System.Runtime.Remoting.RemotingTimeoutException.cs
 //
-// AUthor: Duncan Mak  (duncan@ximian.com)
+// Author: Duncan Mak  (duncan@ximian.com)
 //
 // 2002 (C) Copyright. Ximian, Inc.
 //
@@ -35,6 +35,7 @@ using System.Runtime.Serialization;
 namespace System.Runtime.Remoting {
 
        [Serializable]
+       [System.Runtime.InteropServices.ComVisible (true)]
        public class RemotingTimeoutException : RemotingException
        {
                public RemotingTimeoutException ()
@@ -47,8 +48,8 @@ namespace System.Runtime.Remoting {
                {
                }
 
-               public RemotingTimeoutException (string message, Exception ex)
-                       : base (message, ex)
+               public RemotingTimeoutException (string message, Exception InnerException)
+                       : base (message, InnerException)
                {
                }