FileManager v1.7.0
Manage access to files with async model
Loading...
Searching...
No Matches
FileDoesNotExistException.h
1#pragma once
2
3#include "BaseFileManagerException.h"
4
5namespace file_manager
6{
7 namespace exceptions
8 {
11 {
12 public:
13 FileDoesNotExistException(const std::filesystem::path& filePath);
14
16 };
17 }
18}
Base class for all File Manager exceptions.