libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
WouldBlock.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/error/ApiError.hxx>
5
6namespace cosmos {
7
9
16class COSMOS_API WouldBlock :
17 public ApiError {
18public:
19 WouldBlock(const std::string_view prefix = {}) :
20 ApiError{prefix}
21 {}
22
24};
25
26} // end ns
Specialized exception type used when system APIs fail.
Definition ApiError.hxx:18
Specialized ApiError for handling non-blocking operation.
#define COSMOS_ERROR_IMPL
Use this in each type derived from CosmosError to apply mandatory overrides.
Definition macros.hxx:30