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

Class COFFFormatException

view/pe/coffview.h:121–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119namespace BinaryNinja
120{
121 class COFFFormatException: public std::exception
122 {
123 std::string m_message;
124
125 public:
126 COFFFormatException(const std::string& msg = "invalid format"): m_message(msg) {}
127 virtual const char* what() const NOEXCEPT { return m_message.c_str(); }
128 };
129
130 #pragma pack(push, 2)
131 struct COFFHeader

Callers 2

InitMethod · 0.85
RVAToFileOffsetMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected