cortex 0.0.1
Loading...
Searching...
No Matches
scheduler_stopping_error.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <stdexcept>
4
10namespace cortex::tiny_fiber {
11
32class SchedulerStoppingError : public std::runtime_error {
33public:
35 : std::runtime_error("Scheduler is stopping") {}
36};
37
38} // namespace cortex::tiny_fiber
Exception thrown when the scheduler is stopping.
Definition scheduler_stopping_error.hpp:32
SchedulerStoppingError()
Definition scheduler_stopping_error.hpp:34
Cooperative multitasking primitives built on cortex::Coroutine.
Definition condition_variable.hpp:13