| 113 | } |
| 114 | |
| 115 | status_exception::~status_exception() throw() |
| 116 | { |
| 117 | delete[] findDynamicStrings(fb_utils::statusLength(m_status_vector), m_status_vector); |
| 118 | if (m_status_vector != m_buffer) |
| 119 | { |
| 120 | delete[] m_status_vector; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | const char* status_exception::what() const throw() |
| 125 | { |
nothing calls this directly
no test coverage detected