| 61 | } |
| 62 | |
| 63 | void setStatus(const std::string& info) { |
| 64 | error_code_ = STATUS_ERR; |
| 65 | error_info_ = info; |
| 66 | } |
| 67 | |
| 68 | void setStatus(int code, const std::string& info) { |
| 69 | error_code_ = code; |
nothing calls this directly
no outgoing calls
no test coverage detected