Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
WindowError.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <stdexcept>
4
#include <string>
5
6
namespace
Window::Exception
{
7
11
class
WindowError
:
public
std::runtime_error {
12
public
:
13
explicit
WindowError
(
const
std::string &message) : std::runtime_error(
"Window error: "
+ message) {}
14
};
15
16
}
// namespace Window::Exception
Window::Exception::WindowError::WindowError
WindowError(const std::string &message)
Definition
WindowError.hpp:13
Window::Exception
Definition
WindowError.hpp:6
src
plugin
window
src
exception
WindowError.hpp
Generated by
1.16.1