| 5351 | } |
| 5352 | |
| 5353 | void YTransaction::prepare(CheckStatusWrapper* status, unsigned int msgLength, |
| 5354 | const unsigned char* message) |
| 5355 | { |
| 5356 | try |
| 5357 | { |
| 5358 | YEntry<YTransaction> entry(status, this); |
| 5359 | |
| 5360 | entry.next()->prepare(status, msgLength, message); |
| 5361 | } |
| 5362 | catch (const Exception& e) |
| 5363 | { |
| 5364 | e.stuffException(status); |
| 5365 | } |
| 5366 | } |
| 5367 | |
| 5368 | void YTransaction::commit(CheckStatusWrapper* status) |
| 5369 | { |
no test coverage detected