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