Atlas-Launcher/external/vfs/include/exception/FileNotFoundException.hpp

14 lines
236 B
C++

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