| 83 | } |
| 84 | |
| 85 | void Response::SetResponse(const std::string& error, |
| 86 | const Json::Value& response_value) { |
| 87 | LOG(TRACE) << "Entering Response::SetResponse"; |
| 88 | this->error_ = error; |
| 89 | this->value_ = response_value; |
| 90 | } |
| 91 | |
| 92 | void Response::SetErrorResponse(const std::string& error, |
| 93 | const std::string& message) { |
no test coverage detected