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