#pragma once #include #include namespace vfs::exception { class FileNotFoundException final : public std::runtime_error { public: explicit FileNotFoundException(const std::filesystem::path& path); }; }