guanaqo 1.0.0-alpha.25
Utilities for scientific software
Loading...
Searching...
No Matches
not-implemented.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file
4/// @ingroup core
5/// Exception type for unimplemented functionality.
6
7#include <guanaqo/export.h>
8#include <stdexcept>
9
10namespace guanaqo {
11
12/// @ingroup core
13struct GUANAQO_EXPORT not_implemented_error : std::logic_error {
14 using std::logic_error::logic_error;
15};
16
17} // namespace guanaqo