| 111 | } |
| 112 | |
| 113 | void ErrorMsg::SetErrorMsg(const std::string& msg) { |
| 114 | message_ = msg.substr( |
| 115 | 0, std::min(msg.size(), static_cast<size_t>(ErrorMsg::MAX_ERROR_MESSAGE_LEN))); |
| 116 | } |
| 117 | |
| 118 | string ErrorMsg::GetFullMessageDetails() const { |
| 119 | stringstream ss; |
no test coverage detected