14 lines
236 B
C++
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);
|
|
};
|
|
|
|
}
|