| 119 | namespace 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 |
no outgoing calls
no test coverage detected