GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
SelectListException.cpp
Go to the documentation of this file.
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace exceptions
8 {
9 SelectListException::SelectListException(const string& method, LRESULT errorCode, string_view fileName, string_view methodName, int line, string_view additionalDescription) :
10 BaseGUIFrameworkException(format(R"(Exception in method "{}" with error code "{}". {})"sv, method, errorCode, additionalDescription), fileName, methodName, line)
11 {
12
13 }
14 }
15}
SelectListException(const std::string &method, LRESULT errorCode, std::string_view fileName, std::string_view methodName, int line, std::string_view additionalDescription="")