excgrid 0.1.0
Grid + XC-kernel + D3 library
Loading...
Searching...
No Matches
error.hpp
1#pragma once
2
3#include <expected>
4
5namespace excgrid {
6
13
20
23template <typename T> using Result = std::expected<T, ErrorCode>;
24
25} // namespace excgrid
std::expected< T, ErrorCode > Result
Definition error.hpp:23
ErrorCode
Definition error.hpp:16
@ kInvalidArgument
A parameter or input value is out of contract.
Definition error.hpp:17
@ kUnsupported
A requested size/feature is not shipped.
Definition error.hpp:18