summaryrefslogtreecommitdiff
path: root/forstio/core
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-05-03 19:07:24 +0200
committerClaudius Holeksa <mail@keldu.de>2023-05-03 19:07:24 +0200
commit9b81a2585142260f89d47cbe1e592cec9e1f778f (patch)
tree827e627430cdb73aa352b05ac1da5c650b08beeb /forstio/core
parent2e5932edbda07d5b142df95cfe79268ea7fb997b (diff)
Not implemented
Diffstat (limited to 'forstio/core')
-rw-r--r--forstio/core/error.h5
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;
+};
}
/**