| 16 | namespace utils::path { |
| 17 | |
| 18 | void throwError(const std::string_view message, const std::string_view pathOrUrl) { |
| 19 | throw errors::InputValidationException(fmt::format("{} ('{}')", message, pathOrUrl)); |
| 20 | } |
| 21 | |
| 22 | // --------------------------------------------------------------------- |
| 23 | // ForwardSlashSeparatedString |
no outgoing calls
no test coverage detected