From 715cc71146216e4adc901c6e01c0cfb5ca284167 Mon Sep 17 00:00:00 2001 From: chatlanin Date: Fri, 18 Apr 2025 12:57:27 +0300 Subject: [PATCH] fix get data --- src/hack/exception/exception.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hack/exception/exception.hpp b/src/hack/exception/exception.hpp index 741ada3..6bcdc1e 100644 --- a/src/hack/exception/exception.hpp +++ b/src/hack/exception/exception.hpp @@ -24,6 +24,7 @@ namespace hack void title(const std::string v) noexcept { m_title = v; } void description(const std::string v) noexcept { m_description = v; } void set_data(std::any v) noexcept { m_data = v; } + std::any get_data() noexcept { return m_data; } void log() {