diff options
-rw-r--r-- | src/core/error.h | 4 |
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; }; |