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

◆ platform_not_supported_exception_

#define platform_not_supported_exception_ (   ...)

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

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

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