| 66 | m_Message[MAX_ERRORTEXT - 1] = '\0'; |
| 67 | } |
| 68 | const char *GetMessage (void) const noexcept |
| 69 | { |
| 70 | if (m_Message[0] != '\0') |
| 71 | return (const char *)m_Message; |
| 72 | else |
| 73 | return NULL; |
| 74 | } |
| 75 | char const *what() const noexcept override |
| 76 | { |
| 77 | return m_Message; |
no outgoing calls
no test coverage detected