mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
218 B
C++
13 lines
218 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace RBX {
|
|
|
|
class initialization_error : public std::runtime_error {
|
|
public:
|
|
initialization_error(const char* const errorMessage) :
|
|
std::runtime_error(errorMessage) {}
|
|
};
|
|
|
|
} |