refactor(cleanup): fix new error type

This commit is contained in:
PancakeTAS 2025-12-06 16:05:51 +01:00
parent f3536b0895
commit 690c166f7e

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;
};
///