Dispatch Queue
Dispatch Queue / Thread Pool implementation for C++11 with built-in C++20 coroutine support
 
Loading...
Searching...
No Matches
task_error.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <stdexcept>
4
5namespace dispatch_queue {
6
10class task_error : public std::runtime_error {
11public:
12 using std::runtime_error::runtime_error;
13};
14
15}
Definition task_error.hpp:10
Definition dispatch_queue.hpp:19