Merge pull request #309 from i59/patch-1
[mono.git] / mcs / class / corlib / System.IO / IOException.cs
index 4621bca173d9fe44af4cae6bf2860f0f570f972e..e4c2deff921e6ea7f3d33c59a1251bb9ba2eeb8e 100644 (file)
 //
 
 using System.Runtime.Serialization;
+using System.Runtime.InteropServices;
 
 namespace System.IO {
        [Serializable]
+       [ComVisible (true)]
        public class IOException : SystemException {
 
                // Constructors
@@ -47,8 +49,8 @@ namespace System.IO {
                {
                }
 
-               public IOException (string message, Exception inner)
-                       : base (message, inner)
+               public IOException (string message, Exception innerException)
+                       : base (message, innerException)
                {
                }