| 65 | NotExecutableError(const std::string& error) : std::exception(), m_error(error) {} |
| 66 | #ifdef __GNUC__ |
| 67 | virtual const char* what() const noexcept |
| 68 | { |
| 69 | return m_error.c_str(); |
| 70 | } |
| 71 | #else |
| 72 | virtual const char* what() const |
| 73 | { |
nothing calls this directly
no outgoing calls
no test coverage detected