MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / IGFDException

Class IGFDException

external/ImGuiFileDialog/ImGuiFileDialog.cpp:434–448  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

432#endif // USE_PLACES_FEATURE
433
434class IGFDException : public std::exception {
435private:
436 char const* m_msg{};
437
438public:
439 IGFDException() : std::exception() {
440 }
441 explicit IGFDException(char const* const vMsg)
442 : std::exception(), // std::exception(msg) is not availaiable on linux it seems... but on windos yes
443 m_msg(vMsg) {
444 }
445 char const* what() const noexcept override {
446 return m_msg;
447 }
448};
449
450#ifndef CUSTOM_FILESYSTEM_INCLUDE
451#ifdef USE_STD_FILESYSTEM

Callers 1

addCollectionFilterMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected