lalala
[mono.git] / mcs / class / corlib / System.IO / FileLoadException.cs
index 65d233a74c4f07a5e100b935c3cd56880e712975..2ee1546b36c657cb39a5bfd3fa0a49457d0a1e3b 100755 (executable)
 //
 // Author:
 //   Paolo Molaro (lupus@ximian.com)
+//   Duncan Mak (duncan@ximian.com)
 //
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
 //
 
+using System.Globalization;
+using System.IO;
+using System.Runtime.Serialization;
+
 namespace System.IO {
+       [Serializable]
+       public class FileLoadException : IOException {
 
-       public class FileLoadException : SystemException {
+               // Fields
+               string msg;
+               Exception inner;
+               string fileName;
+               string fusionLog;
+               
                // Constructors
                public FileLoadException ()
-                       : base ("I/O Error")
+                       : base (Locale.GetText ("I/O Error"))
                {
+                       msg = Locale.GetText ("I/O Error");
                }
 
                public FileLoadException (string message)
                        : base (message)
                {
+                       msg = message;
                }
 
+               public FileLoadException (string message, string fileName)
+                       : base (message)
+               {
+                       this.msg = message;
+                       this.fileName = fileName;
+               }               
+
                public FileLoadException (string message, Exception inner)
                        : base (message, inner)
                {
+                       msg = message;
+                       this.inner = inner;
+               }
+
+               public FileLoadException (string message, string fileName, Exception inner)
+                       : base (message, inner)
+               {
+                       this.msg = message;
+                       this.fileName = fileName;
+                       this.inner = inner;
+               }
+
+               protected FileLoadException (SerializationInfo info, StreamingContext context)
+               {
+                       fileName = info.GetString ("FileLoad_FileName");
+                       fusionLog = info.GetString ("FileLoad_FusionLog");
+               }
+
+               // Properties
+               public override string Message
+               {
+                       get {
+                               if (fileName != null)
+                                       return Locale.GetText (msg + ": " + fileName);
+                               else
+                                       return msg;
+                       }
+               }
+
+               public string FileName
+               {
+                       get { return fileName; }
+               }
+               
+               public string FusionLog
+               {
+                       get { return fusionLog; }
+               }
+
+               // Methods
+               public override void GetObjectData (SerializationInfo info, StreamingContext context)
+               {
+                       base.GetObjectData (info, context);
+                       info.AddValue ("FileLoad_FileName", fileName);
+                       info.AddValue ("FileLoad_FusionLog", fusionLog);
+               }
+
+               public override string ToString ()
+               {
+                       string result = GetType ().FullName + ": " + Message;
+                       if (this.InnerException != null)
+                               result +=" ----> " + InnerException;
+                       if (this.StackTrace != null)
+                               result += '\n' + StackTrace;
+
+                       return result;
                }
        }
 }