4 #include <boost/stacktrace.hpp> 13 virtual const char* what()
const noexcept = 0;
15 const boost::stacktrace::stacktrace trace;
18 template <
class Exception>
21 template <
class... Args>
23 : Exception(std::forward<Args>(args)...)
26 virtual const char* what()
const noexcept
override {
return Exception::what(); }
Definition: traced_exception.h:10
Definition: traced_exception.h:7
Definition: traced_exception.h:19