xtd 0.2.0
Loading...
Searching...
No Matches

◆ directory_not_found_exception_

#define directory_not_found_exception_ (   ...)

#include <xtd.core/include/xtd/io/directory_not_found_exception.h>

Helper on xtd::io::directory_not_found_exception to call it with current stack frame information.

Header
#include <xtd/io/directory_not_found_exception>
Library
xtd.core
Remarks
Is equivalent to xtd::io::directory_not_found_exception {{any argument}, csf_}
void my_func() {
if (invalid_info) throw directory_not_found_exception_(); // same as : throw directory_not_found_exception {csf_};
if (invalid_value) throw directory_not_found_exception_("Bad value"); // same as : throw directory_not_found_exception {"Bad value", csf_};
...
}
#define directory_not_found_exception_(...)
Helper on xtd::io::directory_not_found_exception to call it with current stack frame information.
Definition directory_not_found_exception.h:114