| 353 | } |
| 354 | |
| 355 | [[noreturn]] void Settings::SettingsFileParser::fail(const std::string& message) |
| 356 | { |
| 357 | std::stringstream error; |
| 358 | error << "Error on line " << mLine << " in " << Files::pathToUnicodeString(mFile) << ":\n" << message; |
| 359 | throw std::runtime_error(error.str()); |
| 360 | } |
no outgoing calls
no test coverage detected