MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / nest

Method nest

include/Core/Exception.hpp:56–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54 }
55 const char* what() const noexcept override;
56 Exception nest(const std::exception& exception)
57 {
58 m_message += " Cause:\n";
59 m_message
60 += " " + Utils::String::replace(exception.what(), "\n", "\n ");
61 return *this;
62 }
63 };
64
65 inline const char* Exception::what() const noexcept

Callers 6

configureMethod · 0.80
loadAnimationMethod · 0.80
loadMetaMethod · 0.80
parseFunction · 0.80
applyMethod · 0.80
applyMethod · 0.80

Calls 2

replaceFunction · 0.50
whatMethod · 0.45

Tested by

no test coverage detected