August 2003
Intermediate to advanced
928 pages
32h 1m
English
FileNotFoundException
This exception is thrown when you attempt to access a file that does not exist.
public class FileNotFoundException : IOException { // Public Constructors public FileNotFoundException( ); public FileNotFoundException(stringmessage); public FileNotFoundException(stringmessage, ExceptioninnerException); public FileNotFoundException(stringmessage, stringfileName); public FileNotFoundException(stringmessage, stringfileName, ExceptioninnerException); // Protected Constructors protected FileNotFoundException(System.Runtime.Serialization.SerializationInfoinfo, System.Runtime.Serialization.StreamingContextcontext); // Public Instance Properties public string FileName{get; } public string FusionLog{get; } public override string Message{get; } // overrides Exception // Public Instance Methods public override void GetObjectData(System.Runtime.Serialization.SerializationInfoinfo, System.Runtime.Serialization.StreamingContextcontext) // overrides Exception public override string ToString( ); // overrides Exception }
System.Object
→
System.Exception(System.Runtime.Serialization.ISerializable)
→
System.SystemException
→
IOException
→
FileNotFoundException