| 19 | Exception::~Exception() throw() { } |
| 20 | |
| 21 | void Exception::stuffException(DynamicStatusVector& status_vector) const throw() |
| 22 | { |
| 23 | StaticStatusVector status; |
| 24 | stuffException(status); |
| 25 | try |
| 26 | { |
| 27 | status_vector.save(status.begin()); |
| 28 | } |
| 29 | catch (const BadAlloc&) |
| 30 | { |
| 31 | ISC_STATUS tmp[3]; |
| 32 | processUnexpectedException(tmp); |
| 33 | status_vector.save(tmp); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | void Exception::stuffException(CheckStatusWrapper* status_vector) const throw() |
| 38 | { |
no test coverage detected