GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ExceptionConstants.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace gui_framework
6{
7 namespace exception_messages
8 {
9 inline constexpr std::string_view alreadyRegisteredClassName = "This class name already registered";
10
11 inline constexpr std::string_view notEnoughSpace = "Insufficient space is available to store the new string";
12
13 inline constexpr std::string_view notImplemented = R"(Method "{}" not implemented for "{}" class)";
14 }
15}
constexpr std::string_view notImplemented
constexpr std::string_view alreadyRegisteredClassName
constexpr std::string_view notEnoughSpace