-------------------------------------------------------------------------
| 30 | { |
| 31 | //------------------------------------------------------------------------- |
| 32 | void CheckPathExists(const std::string& context, const fs::path& path) |
| 33 | { |
| 34 | if (!Tools::FileExists(path)) |
| 35 | throw std::runtime_error(context + " \"" + path.string() + "\" does not exist"); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | //------------------------------------------------------------------------- |
no test coverage detected