#include "exception/FileNotFoundException.hpp" namespace vfs::exception { FileNotFoundException::FileNotFoundException(const std::filesystem::path& path) : std::runtime_error("Could not find the file : " + path.string()) {} }