Merge pull request #3622 from rolfbjarne/remove-stray-file
[mono.git] / mcs / class / corlib / System.Runtime.Remoting / RemotingException.cs
index c2ad2a47753d150ba6766ff6912993290a5d9297..6b4ec2252769288ce5686df9d1d3645891000f0b 100644 (file)
@@ -1,7 +1,7 @@
 //
 // System.Runtime.Remoting.RemotingException.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 RemotingException : SystemException
        {
                public RemotingException ()
@@ -52,8 +53,8 @@ namespace System.Runtime.Remoting {
                {
                }
 
-               public RemotingException (string message, Exception ex)
-                       : base (message, ex)
+               public RemotingException (string message, Exception InnerException)
+                       : base (message, InnerException)
                {
                }
        }