| 144 | } |
| 145 | |
| 146 | void status_exception::stuffByException(StaticStatusVector& status) const throw() |
| 147 | { |
| 148 | try |
| 149 | { |
| 150 | status.assign(m_status_vector, fb_utils::statusLength(m_status_vector) + 1); |
| 151 | } |
| 152 | catch (const BadAlloc&) |
| 153 | { |
| 154 | processUnexpectedException(status.makeEmergencyStatus()); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | // ********************************* BadAlloc **************************** |
| 159 |
nothing calls this directly
no test coverage detected