| 4130 | } |
| 4131 | |
| 4132 | void YRequest::unwind(CheckStatusWrapper* status, int level) |
| 4133 | { |
| 4134 | try |
| 4135 | { |
| 4136 | YEntry<YRequest> entry(status, this); |
| 4137 | entry.next()->unwind(status, level); |
| 4138 | } |
| 4139 | catch (const Exception& e) |
| 4140 | { |
| 4141 | e.stuffException(status); |
| 4142 | } |
| 4143 | } |
| 4144 | |
| 4145 | void YRequest::free(CheckStatusWrapper* status) |
| 4146 | { |
no test coverage detected