// file : odb/details/win32/exceptions.cxx // license : GNU GPL v2; see accompanying LICENSE file #include namespace odb { namespace details { const char* win32_exception:: what () const ODB_NOTHROW_NOEXCEPT { return "Win32 API error"; } win32_exception* win32_exception:: clone () const { return new win32_exception (*this); } } }