summaryrefslogtreecommitdiff
path: root/forstio/core/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'forstio/core/error.h')
-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;
+};
}
/**