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

◆ not_implemented_exception_

#define not_implemented_exception_ (   ...)

#include <xtd.core/include/xtd/not_implemented_exception.h>

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

Library
xtd.core
Remarks
Is equivalent to xtd::not_implemented_exception {{any argument}, csf_}
void my_func() {
if (invalid_info) throw not_implemented_exception_(); // same as : throw not_implemented_exception {csf_};
if (invalid_value) throw not_implemented_exception_("Bad value"); // same as : throw not_implemented_exception {"Bad value", csf_};
...
}
#define not_implemented_exception_(...)
Helper on xtd::not_implemented_exception to call it with current stack frame information.
Definition not_implemented_exception.h:99