DirectoryNotFoundException.cs 540 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.IO.DirectoryNotFoundException.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. [Serializable]
  11. public class DirectoryNotFoundException : IOException {
  12. // Constructors
  13. public DirectoryNotFoundException ()
  14. : base ("Directory not found")
  15. {
  16. }
  17. public DirectoryNotFoundException (string message)
  18. : base (message)
  19. {
  20. }
  21. public DirectoryNotFoundException (string message, Exception inner)
  22. : base (message, inner)
  23. {
  24. }
  25. }
  26. }