DirectoryNotFoundException.cs 524 B

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