cortex 0.0.1
Loading...
Searching...
No Matches
resume_on_completed_coroutine_error.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <stdexcept>
4
10namespace cortex {
11
16struct ResumeOnDoneCoroutineError : std::logic_error {
17 using logic_error::logic_error;
18};
19
20} // namespace cortex
Definition base_coroutine.hpp:14
Exception thrown when calling Resume() on a coroutine that has finished execution.
Definition resume_on_completed_coroutine_error.hpp:16