MCPcopy Create free account
hub / github.com/bloomberg/pystack / UnwinderError

Class UnwinderError

src/pystack/_pystack/unwinder.h:17–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15namespace pystack {
16
17class UnwinderError : public std::exception
18{
19 public:
20 explicit UnwinderError(std::string error)
21 : d_error(std::move(error)){};
22
23 [[nodiscard]] const char* what() const noexcept override
24 {
25 return d_error.c_str();
26 }
27
28 private:
29 std::string d_error;
30};
31
32class Frame
33{

Callers 5

frameCallbackFunction · 0.85
getAddressforSymbolMethod · 0.85
unwindThreadMethod · 0.85
getCoreTidsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected