We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57b0937 commit a30d207Copy full SHA for a30d207
src/ystdlib/error_handling/TraceableException.hpp
@@ -38,11 +38,11 @@ class TraceableException : public std::exception {
38
39
explicit TraceableException(
40
std::error_code error_code,
41
- std::string what,
+ std::string message,
42
std::source_location const& where = std::source_location::current()
43
)
44
: m_error_code{error_code},
45
- m_what{std::move(what)},
+ m_what{std::move(message)},
46
m_where{where} {}
47
48
// Methods implementing std::exception
0 commit comments