Creates a new instance of the DirectoryNotFoundException class with its message string.
Creates a new instance of the DirectoryNotFoundException class with its message string set to the empty string ("") and its HRESULT set to COR_E_DIRECTORYNOTFOUND.
[Visual Basic] Overloads Public Sub New()
[C#] public DirectoryNotFoundException();
[C++] public: DirectoryNotFoundException();
[JScript] public function DirectoryNotFoundException();
Creates a new DirectoryNotFoundException with its message string set to message and its HRESULT set to COR_E_DIRECTORYNOTFOUND.
[Visual Basic] Overloads Public Sub New(String)
[C#] public DirectoryNotFoundException(String);
[C++] public: DirectoryNotFoundException(String*);
[JScript] public function DirectoryNotFoundException(String);
Creates a new DirectoryNotFoundException with its message string set to message and inner and its HRESULT set to COR_E_DIRECTORYNOTFOUND.
[Visual Basic] Overloads Public Sub New(String, Exception)
[C#] public DirectoryNotFoundException(String, Exception);
[C++] public: DirectoryNotFoundException(String*, Exception);
[JScript] public function DirectoryNotFoundException(String, Exception);
DirectoryNotFoundException Class | DirectoryNotFoundException Members | System.IO Namespace