refactor(cleanup): fix new error type

This commit is contained in:
PancakeTAS 2025-12-06 16:05:51 +01:00
parent ef8fda871c
commit 374e00c88e
No known key found for this signature in database

View file

@ -28,14 +28,7 @@ namespace lsfgvk {
///
explicit error(const std::string& msg, const std::exception& inner);
/// Get the exception message
[[nodiscard]] const char* what() const noexcept override {
return msg.c_str();
}
~error() override;
private:
std::string msg;
};
///