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