22 #define throw_if(_test, _expression) _throw_if(here(), _test, _expression, #_test)
42 template <
typename _ReturnT,
typename _ExpressionT>
70 #if (XTD_COMPILER_GCC & XTD_COMPILER)
79 #if (XTD_COMPILER_GCC & XTD_COMPILER)
96 template <
typename _ReturnT,
typename _ExpressionT>
97 inline static _ReturnT _throw_if(
const xtd::source_location& source, _ReturnT ret, _ExpressionT exp,
const char* expstr){
112 #if (XTD_COMPILER_MSVC & XTD_COMPILER)
130 #if ((XTD_OS_MINGW | XTD_OS_WINDOWS) & XTD_OS)
134 template <
typename _ReturnT,
typename _ExpressionT>
135 inline static _ReturnT _throw_if(
const xtd::source_location& source, _ReturnT ret, _ExpressionT exp,
const char* expstr){
137 throw exception(source, expstr);
142 exception(
const xtd::source_location& source,
const std::string&) :xtd::exception(source,
""), _last_error(GetLastError()){
143 const char * sTemp =
nullptr;
144 FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
nullptr, _last_error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), reinterpret_cast<LPSTR>(&sTemp), 0,
nullptr);
146 LocalFree((HLOCAL)sTemp);
const source_location & _source
Constructors.
std::exception _super_t
shortcut typedef of the super class
exception(const source_location &Source, const std::string &What)
Constructors.
exception(const exception &src)
Constructors.
crt_exception(crt_exception &&ex)
constructors
exception(exception &&src)
Constructors.
const char * what() const noexceptoverride
}@
static _ReturnT _throw_if(const xtd::source_location &source, _ReturnT ret, _ExpressionT exp, const char *expstr)
Helper function template to test for an expression and throw an exception Throws exception if the tes...
int errnum() const
Error number associated with the CRT exception.
crt_exception(const crt_exception &ex)
constructors
specializations of std::basic_string for advanced and common string handling
host, target and build configurations and settings Various components are purpose built for specific ...
maintains info about locations within source code
virtual const source_location & location() const noexcept
location in source that caused the exception
std::string _what
Constructors.
crt_exception(const source_location &Source, const std::string &What)
constructors
Contains information about the location of source code Used in error reporting and logging...
c++ wrapper around legacy errno based errors from the CRT