| 17 | } |
| 18 | |
| 19 | TString FormatExc(const std::exception& exception) { |
| 20 | TStringStream out; |
| 21 | FormatExceptionTo(out, exception); |
| 22 | return out.Str(); |
| 23 | } |
| 24 | |
| 25 | TString CurrentExceptionMessage() { |
| 26 | auto exceptionPtr = std::current_exception(); |
no test coverage detected