| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // System.IO.FileNotFoundException.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (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;
- }
- }
- }
- }
|