MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / ExceptionWithStackTrace

Class ExceptionWithStackTrace

exceptions.h:29–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27namespace BinaryNinja
28{
29 struct ExceptionWithStackTrace : std::exception
30 {
31 std::string m_originalMessage;
32 std::string m_message;
33 std::string m_stackTrace;
34 ExceptionWithStackTrace(const std::string& message);
35 ExceptionWithStackTrace(std::exception_ptr exc1, std::exception_ptr exc2);
36 const char* what() const noexcept override
37 {
38 return m_message.c_str();
39 }
40 };
41}
42#endif
43

Callers 15

GetCurrentSnapshotIdMethod · 0.85
GetAllSnapshotIdsMethod · 0.85
GetSnapshotParentIdsMethod · 0.85
GetSnapshotChildIdsMethod · 0.85
GetTypesMethod · 0.85
GetTypeIdsMethod · 0.85
GetTypeNamesMethod · 0.85
GetTypeNamesAndIdsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected