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