FileNotFoundException.cs 575 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // System.IO.FileNotFoundException.cs
  3. //
  4. // Author:
  5. // Paolo Molaro ([email protected])
  6. //
  7. // (C) 2001 Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.IO {
  10. public class FileNotFoundException : SystemException {
  11. // Constructors
  12. public FileNotFoundException ()
  13. : base ("File not found")
  14. {
  15. }
  16. public FileNotFoundException (string message)
  17. : base (message)
  18. {
  19. }
  20. public FileNotFoundException (string message, Exception inner)
  21. : base (message, inner)
  22. {
  23. }
  24. public string FusionLog {
  25. get {
  26. // FIXME
  27. return null;
  28. }
  29. }
  30. }
  31. }