Merge pull request #656 from LogosBible/collection_lock
[mono.git] / mcs / class / corlib / System / EntryPointNotFoundException.cs
index 092f9c0c162127fc59cfc1575c3d1c4288828a83..00e45e14711646f4eb1812234d33ea81e39ecda8 100644 (file)
 //
 
 using System.Runtime.Serialization;
+using System.Runtime.InteropServices;
 
 namespace System
 {
        [Serializable]
+       [ComVisible (true)]
        public class EntryPointNotFoundException : TypeLoadException
        {
                const int Result = unchecked ((int)0x80131523);
@@ -58,8 +60,8 @@ namespace System
                {
                }
 
-               public EntryPointNotFoundException (string message, Exception innerException)
-                       :base (message, innerException)
+               public EntryPointNotFoundException (string message, Exception inner)
+                       :base (message, inner)
                {
                        HResult = Result;
                }