X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem%2FEntryPointNotFoundException.cs;h=00e45e14711646f4eb1812234d33ea81e39ecda8;hb=ac60ecf03fef7535f5e30d147ca207e34ee32474;hp=092f9c0c162127fc59cfc1575c3d1c4288828a83;hpb=669beaed8380fa592533c8755f72593b4422d01d;p=mono.git diff --git a/mcs/class/corlib/System/EntryPointNotFoundException.cs b/mcs/class/corlib/System/EntryPointNotFoundException.cs index 092f9c0c162..00e45e14711 100644 --- a/mcs/class/corlib/System/EntryPointNotFoundException.cs +++ b/mcs/class/corlib/System/EntryPointNotFoundException.cs @@ -32,10 +32,12 @@ // 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; }