MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / saveException

Method saveException

src/remote/remote.cpp:1021–1034  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1019}
1020
1021void 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
1036string rem_port::getRemoteId() const
1037{

Callers

nothing calls this directly

Calls 4

StatusHolderClass · 0.85
getErrorMethod · 0.45
stuffExceptionMethod · 0.45
saveMethod · 0.45

Tested by

no test coverage detected