| 16 | } |
| 17 | |
| 18 | InvokeFailureException::InvokeFailureException( |
| 19 | const std::string& message, const std::string& exceptionType |
| 20 | ) : |
| 21 | InvokeException(message), |
| 22 | exceptionType(exceptionType) { |
| 23 | } |
| 24 | |
| 25 | InvokeFailureException::InvokeFailureException(const InvokeFailureException& rhs) : |
| 26 | InvokeException(rhs), |
nothing calls this directly
no outgoing calls
no test coverage detected