GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
BaseGUIFrameworkException.cpp
Go to the documentation of this file.
2
3#include "Utility/Utility.h"
4
5using namespace std;
6
7namespace gui_framework
8{
9 namespace exceptions
10 {
11 BaseGUIFrameworkException::BaseGUIFrameworkException(const string& exceptionMessage, string_view fileName, string_view methodName, int line) :
12 runtime_error(__utility::extendedException(exceptionMessage, fileName, methodName, line))
13 {
14
15 }
16 }
17}
BaseGUIFrameworkException(const std::string &exceptionMessage, std::string_view fileName, std::string_view methodName, int line)