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() {