DirectoryNotFoundException.cs 705 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. using System.Runtime.Serialization;
  10. namespace System.IO {
  11. [Serializable]
  12. public class DirectoryNotFoundException : IOException {
  13. // Constructors
  14. public DirectoryNotFoundException ()
  15. : base ("Directory not found")
  16. {
  17. }
  18. public DirectoryNotFoundException (string message)
  19. : base (message)
  20. {
  21. }
  22. public DirectoryNotFoundException (string message, Exception inner)
  23. : base (message, inner)
  24. {
  25. }
  26. protected DirectoryNotFoundException (SerializationInfo info, StreamingContext context)
  27. : base (info, context)
  28. {
  29. }
  30. }
  31. }