class registry_exception
| 89 | |
| 90 | // class registry_exception |
| 91 | class registry_error : public std::exception |
| 92 | { |
| 93 | public: |
| 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 | |
| 102 | private: |
| 103 | std::string What; |
| 104 | }; |
| 105 | |
| 106 | // Class KeyHandler |
| 107 | class KeyHandler |
no outgoing calls
no test coverage detected
searching dependent graphs…