GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
FileDoesNotExist.cpp
Go to the documentation of this file.
1#include "FileDoesNotExist.h"
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace exceptions
8 {
9 FileDoesNotExist::FileDoesNotExist(const filesystem::path& filePath, string_view fileName, string_view methodName, int line) :
10 BaseGUIFrameworkException(format(R"(File "{}" does not exist)"sv, filePath.string()), fileName, methodName, line)
11 {
12
13 }
14 }
15}
FileDoesNotExist(const std::filesystem::path &filePath, std::string_view fileName, std::string_view methodName, int line)