FileManager v1.7.0
Manage access to files with async model
Loading...
Searching...
No Matches
NotAFileException.h
1#pragma once
2
3#include "BaseFileManagerException.h"
4
5namespace file_manager
6{
7 namespace exceptions
8 {
10 class FILE_MANAGER_API NotAFileException : public BaseFileManagerException
11 {
12 public:
13 NotAFileException(const std::filesystem::path& path);
14
15 ~NotAFileException() = default;
16 };
17 }
18}
Base class for all File Manager exceptions.
Thrown if path represents not a regular file.