MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / IGFDException

Class IGFDException

ImGuiFileDialog.cpp:422–436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

420#endif // USE_PLACES_FEATURE
421
422class IGFDException : public std::exception {
423private:
424 char const* m_msg{};
425
426public:
427 IGFDException() : std::exception() {
428 }
429 explicit IGFDException(char const* const vMsg)
430 : std::exception(), // std::exception(msg) is not availaiable on linux it seems... but on windos yes
431 m_msg(vMsg) {
432 }
433 char const* what() const noexcept override {
434 return m_msg;
435 }
436};
437
438#ifndef CUSTOM_FILESYSTEM_INCLUDE
439#ifdef USE_STD_FILESYSTEM

Callers 1

FileSystemDirentClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected