X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.IO%2FFileLoadException.cs;h=e978bac6499e1ea535eedb518b00dd738654b80c;hb=6f3ad3b7a2a963f60a034ac3b83ff75096bbaaa4;hp=906f999bd5105483689f532758578f068b65d811;hpb=c39d7ce9985a7067c1cbf44188007c9433901940;p=mono.git diff --git a/mcs/class/corlib/System.IO/FileLoadException.cs b/mcs/class/corlib/System.IO/FileLoadException.cs index 906f999bd51..e978bac6499 100644 --- a/mcs/class/corlib/System.IO/FileLoadException.cs +++ b/mcs/class/corlib/System.IO/FileLoadException.cs @@ -33,16 +33,17 @@ using System.Runtime.Serialization; using System.Security; using System.Security.Permissions; using System.Text; +using System.Runtime.InteropServices; namespace System.IO { [Serializable] + [ComVisible (true)] public class FileLoadException : IOException { // Fields const int Result = unchecked ((int)0x80070002); string msg; - Exception inner; string fileName; string fusionLog; @@ -74,7 +75,6 @@ namespace System.IO { { HResult = Result; msg = message; - this.inner = inner; } public FileLoadException (string message, string fileName, Exception inner) @@ -83,7 +83,6 @@ namespace System.IO { HResult = Result; this.msg = message; this.fileName = fileName; - this.inner = inner; } protected FileLoadException (SerializationInfo info, StreamingContext context)