| 13 | #include <cstdio> |
| 14 | |
| 15 | static void FormatExceptionTo(IOutputStream& out, const std::exception& exception) { |
| 16 | out << "(" << TypeName(exception) << ") " << exception.what(); |
| 17 | } |
| 18 | |
| 19 | TString FormatExc(const std::exception& exception) { |
| 20 | TStringStream out; |
no test coverage detected