| 85 | NotInstalledError(const std::string& error) : std::exception(), m_error(error) {} |
| 86 | #ifdef __GNUC__ |
| 87 | virtual const char* what() const noexcept |
| 88 | { |
| 89 | return m_error.c_str(); |
| 90 | } |
| 91 | #else |
| 92 | virtual const char* what() const |
| 93 | { |
nothing calls this directly
no outgoing calls
no test coverage detected