-------------------------------------------------------------------------
| 253 | |
| 254 | //------------------------------------------------------------------------- |
| 255 | void UnifiedDiffParser::ThrowError(const Stream& stream, const std::wstring& message) const |
| 256 | { |
| 257 | std::wostringstream ostr; |
| 258 | |
| 259 | ostr << L"Error line " << stream.currentLine_ << L": " << stream.lastLineRead_ << std::endl; |
| 260 | ostr << message; |
| 261 | throw UnifiedDiffParserException(ostr.str()); |
| 262 | } |
| 263 | } |
nothing calls this directly
no outgoing calls
no test coverage detected