| 131 | } |
| 132 | |
| 133 | TStringBuf NPrivateException::yexception::AsStrBuf() const { |
| 134 | if (Buf_.Left()) { |
| 135 | return TStringBuf(Buf_.Data(), Buf_.Filled()); |
| 136 | } |
| 137 | |
| 138 | return TStringBuf(Buf_.Data(), Buf_.Filled() - 1); |
| 139 | } |
| 140 | |
| 141 | void NPrivateException::yexception::ZeroTerminate() noexcept { |
| 142 | char* end = (char*)Buf_.Current(); |