FileManager v1.7.0
Manage access to files with async model
Loading...
Searching...
No Matches
NotAFileException.cpp
1#include "NotAFileException.h"
2
3#include <format>
4
5using namespace std;
6
7namespace file_manager
8{
9 namespace exceptions
10 {
11 NotAFileException::NotAFileException(const filesystem::path& path) :
12 BaseFileManagerException(format("Path '{}' does not represent file"sv, path.string()))
13 {
14
15 }
16 }
17}