| 25 | ConnectionRefusedError(const std::string& error) : std::exception(), m_error(error) {} |
| 26 | #ifdef __GNUC__ |
| 27 | virtual const char* what() const noexcept |
| 28 | { |
| 29 | return m_error.c_str(); |
| 30 | } |
| 31 | #else |
| 32 | virtual const char* what() const |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected