GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
BaseDeserializationException.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace gui_framework
6{
7 namespace exceptions
8 {
9 namespace deserialization
10 {
13 {
14 public:
15 BaseDeserializationException(const std::string& exceptionMessage, std::string_view fileName, std::string_view methodName, int line);
16
17 virtual ~BaseDeserializationException() = default;
18 };
19 }
20 }
21}
#define GUI_FRAMEWORK_API