diff options
author | Claudius Holeksa <mail@keldu.de> | 2023-05-03 19:07:24 +0200 |
---|---|---|
committer | Claudius Holeksa <mail@keldu.de> | 2023-05-03 19:07:24 +0200 |
commit | 9b81a2585142260f89d47cbe1e592cec9e1f778f (patch) | |
tree | 827e627430cdb73aa352b05ac1da5c650b08beeb /forstio/core | |
parent | 2e5932edbda07d5b142df95cfe79268ea7fb997b (diff) |
Not implemented
Diffstat (limited to 'forstio/core')
-rw-r--r-- | forstio/core/error.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/forstio/core/error.h b/forstio/core/error.h index 9708a07..3d242b9 100644 --- a/forstio/core/error.h +++ b/forstio/core/error.h @@ -149,6 +149,11 @@ struct not_supported { static constexpr std::string_view description = "Not supported"; static constexpr bool is_critical = false; }; + +struct not_implemented { + static constexpr std::string_view description = "Not implemented"; + static constexpr bool is_critical = true; +}; } /** |