MCPcopy Create free account
hub / github.com/Kitware/CMake / registry_error

Class registry_error

Source/cmWindowsRegistry.cxx:91–104  ·  view source on GitHub ↗

class registry_exception

Source from the content-addressed store, hash-verified

89
90// class registry_exception
91class registry_error : public std::exception
92{
93public:
94 registry_error(std::string msg)
95 : What(std::move(msg))
96 {
97 }
98 ~registry_error() override = default;
99
100 char const* what() const noexcept override { return What.c_str(); }
101
102private:
103 std::string What;
104};
105
106// Class KeyHandler
107class KeyHandler

Callers 6

OpenKeyMethod · 0.85
ToWideMethod · 0.85
ToNarrowMethod · 0.85
ReadValueMethod · 0.85
GetValueNamesMethod · 0.85
GetSubKeysMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…