| 4 | namespace internal { |
| 5 | |
| 6 | InvokeException::InvokeException(const std::string& message) : |
| 7 | message(message) { |
| 8 | } |
| 9 | |
| 10 | InvokeException::InvokeException(const InvokeException& rhs) : |
| 11 | message(rhs.message) { |
nothing calls this directly
no outgoing calls
no test coverage detected