Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
MissingResourceError.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <stdexcept>
4
8class MissingResourceError : public std::runtime_error {
9 using std::runtime_error::runtime_error;
10};
11
12} // namespace Engine::Exception
Exception thrown when a requested resource is not found in the Core.
Definition MissingResourceError.hpp:8
Definition MissingResourceError.hpp:5