// // System.IO.FileNotFoundException.cs // // Author: // Paolo Molaro (lupus@ximian.com) // // (C) 2001 Ximian, Inc. http://www.ximian.com // namespace System.IO { public class FileNotFoundException : SystemException { // Constructors public FileNotFoundException () : base ("File not found") { } public FileNotFoundException (string message) : base (message) { } public FileNotFoundException (string message, Exception inner) : base (message, inner) { } public string FusionLog { get { // FIXME return null; } } } }