| 1234567891011121314151617181920212223242526272829 |
- //
- // System.IO.DirectoryNotFoundException.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- namespace System.IO {
- public class DirectoryNotFoundException : IOException {
- // Constructors
- public DirectoryNotFoundException ()
- : base ("Directory not found")
- {
- }
- public DirectoryNotFoundException (string message)
- : base (message)
- {
- }
- public DirectoryNotFoundException (string message, Exception inner)
- : base (message, inner)
- {
- }
- }
- }
|