summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/error.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/error.h b/src/core/error.h
index abd979b..d057877 100644
--- a/src/core/error.h
+++ b/src/core/error.h
@@ -121,12 +121,12 @@ struct no_error {
};
struct recoverable {
- static constexpr std::string_view description = "No error has occured";
+ static constexpr std::string_view description = "Generic recoverable error";
static constexpr bool is_critical = false;
};
struct critical {
- static constexpr std::string_view description = "No error has occured";
+ static constexpr std::string_view description = "Generic critical error";
static constexpr bool is_critical = true;
};