| 1019 | } |
| 1020 | |
| 1021 | void Rsr::saveException(const Exception& ex, bool overwrite) |
| 1022 | { |
| 1023 | if (!rsr_status) { |
| 1024 | rsr_status = FB_NEW StatusHolder(); |
| 1025 | } |
| 1026 | |
| 1027 | if (overwrite || !rsr_status->getError()) |
| 1028 | { |
| 1029 | LocalStatus ls; |
| 1030 | CheckStatusWrapper temp(&ls); |
| 1031 | ex.stuffException(&temp); |
| 1032 | rsr_status->save(&temp); |
| 1033 | } |
| 1034 | } |
| 1035 | |
| 1036 | string rem_port::getRemoteId() const |
| 1037 | { |
nothing calls this directly
no test coverage detected