Save an error (possibly with an error token generated from a cpp11::unwind_exception) so that it can be properly handled after some cleanup code has run (e.g., cancelling some futures or waiting for them to finish).
| 110 | // after some cleanup code has run (e.g., cancelling some futures |
| 111 | // or waiting for them to finish). |
| 112 | void SetError(arrow::Status status) { status_ = status; } |
| 113 | |
| 114 | void ResetError() { status_ = arrow::Status::OK(); } |
| 115 |
no outgoing calls
no test coverage detected